index
:
bfs.git
clone
coverity
find2fd
gh-pages
main
queue-files
single-file
Breadth-first version of find
Tavian Barnes <tavianator@tavianator.com>
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
bftw.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bftw: Use a dynamic array for the cache
Tavian Barnes
2022-01-18
1
-45
/
+42
*
util: New close() wrappers to check for EBADF and preserve errno
Tavian Barnes
2022-01-18
1
-2
/
+2
*
bftw: Fix bftw_type() for broken links and BFS_STAT_FOLLOW
Tavian Barnes
2021-03-10
1
-4
/
+12
*
Update copyright dates
Tavian Barnes
2021-02-05
1
-1
/
+1
*
bftw: Share the fd between the cache and open bfs_dir
Tavian Barnes
2021-01-29
1
-38
/
+27
*
dir: New DIR* facade
Tavian Barnes
2021-01-28
1
-140
/
+48
*
bftw: Get rid of bftw_reader
Tavian Barnes
2021-01-28
1
-98
/
+64
*
bftw: Avoid allocating when handling ENAMETOOLONG
Tavian Barnes
2021-01-28
1
-52
/
+30
*
bftw: Allow for NULL base when recovering from EMFILE
Tavian Barnes
2021-01-28
1
-1
/
+1
*
Include what I use
Tavian Barnes
2020-11-12
1
-2
/
+2
*
Enable -Wsign-compare to catch bugs like 726d7801
Tavian Barnes
2020-11-04
1
-1
/
+1
*
util: New BFS_FLEX_SIZEOF() macro for more precise flexible array allocations
Tavian Barnes
2020-10-13
1
-1
/
+1
*
bftw: Fix bftw_cached_stat() with BFS_STAT_TRYFOLLOW
Tavian Barnes
2020-09-20
1
-1
/
+5
*
stat: Rename bfs_stat_flag to _flags
Tavian Barnes
2020-09-18
1
-4
/
+4
*
Don't call stat() just to determine symbolic lengths
Tavian Barnes
2020-09-18
1
-0
/
+8
*
bftw: Make some flag names more explicit
Tavian Barnes
2020-07-29
1
-10
/
+10
*
bftw: Rename bftw_typeflag to bftw_type, and make it not a bitmask
Tavian Barnes
2020-07-29
1
-27
/
+27
*
Implement exponential deepening search
Tavian Barnes
2020-06-16
1
-12
/
+61
*
bftw: Factor out some of the iterative deepening harness
Tavian Barnes
2020-06-12
1
-39
/
+65
*
bftw: Only do another level of deepening if there are unexplored directories
Tavian Barnes
2020-06-12
1
-3
/
+4
*
bftw: Make iterative deepening actually do depth-first search
Tavian Barnes
2020-06-12
1
-15
/
+21
*
Implement -s flag from FreeBSD find to sort results
Tavian Barnes
2020-03-21
1
-3
/
+80
*
bftw: Use a two-star approach to the bftw_queue linked list
Tavian Barnes
2020-03-20
1
-58
/
+28
*
bftw: Avoid shadowing a variable
Tavian Barnes
2019-11-01
1
-5
/
+2
*
mtab: Rename maybe_mount to might_be_mount
Tavian Barnes
2019-08-29
1
-1
/
+1
*
Make -mount and -xdev do different things
Tavian Barnes
2019-07-04
1
-14
/
+25
*
bftw: Track the root bftw_file, not just the path
Tavian Barnes
2019-07-04
1
-8
/
+7
*
bftw: Use a flags enum rather than two bools for bftw_release_*()
Tavian Barnes
2019-07-03
1
-24
/
+33
*
bftw: Remove a dead assignment
Tavian Barnes
2019-06-27
1
-1
/
+0
*
bftw: Only rebuild the part of the path that changes
Tavian Barnes
2019-06-25
1
-24
/
+42
*
bftw: Queue individual files in depth-first mode
Tavian Barnes
2019-06-25
1
-79
/
+150
*
bftw: Don't store bftw_file in bftw_reader
Tavian Barnes
2019-06-25
1
-69
/
+72
*
bftw: Remove BFTW_SKIP_SIBLINGS
Tavian Barnes
2019-06-25
1
-24
/
+11
*
bftw: Rename bftw_dir to bftw_file
Tavian Barnes
2019-06-25
1
-214
/
+213
*
bftw: Don't store trailing slashes in bftw_dir names
Tavian Barnes
2019-06-25
1
-27
/
+23
*
util: Filter out . and .. in xreaddir()
Tavian Barnes
2019-06-25
1
-3
/
+0
*
Implement an iterative deepening mode (-ids)
Tavian Barnes
2019-05-29
1
-0
/
+132
*
Implement a depth-first mode (-dfs)
Tavian Barnes
2019-05-28
1
-10
/
+113
*
bftw: Visit multiple roots breadth-first
Tavian Barnes
2019-05-28
1
-19
/
+25
*
bftw: Refactor the implementation a bit
Tavian Barnes
2019-05-28
1
-218
/
+180
*
bftw: Take dir->{dev,ino} from the right stat buffer
Tavian Barnes
2019-05-23
1
-1
/
+1
*
bftw: Pass a const struct BFTW * to the callback
Tavian Barnes
2019-05-05
1
-30
/
+31
*
bftw: Add a caching stat() API to struct BFTW
Tavian Barnes
2019-05-04
1
-20
/
+75
*
stat: Unify the flags arguments
Tavian Barnes
2019-05-04
1
-4
/
+4
*
Release 1.4
1.4
Tavian Barnes
2019-04-15
1
-1
/
+1
*
bftw: Work around d_type being wrong for bind mounts on Linux
Tavian Barnes
2019-03-06
1
-19
/
+52
*
bftw: Switch from taking separate parameters to a parameters struct
Tavian Barnes
2019-03-06
1
-13
/
+13
*
bftw: Move bftw_typeflag conversion out of util
Tavian Barnes
2018-12-17
1
-2
/
+99
*
Update copyright dates
Tavian Barnes
2018-09-24
1
-1
/
+1
*
bftw: Use bftw_action as the return type when applicable
Tavian Barnes
2018-06-25
1
-6
/
+8
[next]