summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
2023-03-29xspawn: Use list.h for the action listTavian Barnes
2023-03-29trie: Use list.h for the list of leavesTavian Barnes
2023-03-29bftw: Use list.h for the queue and LRU listsTavian Barnes
2023-03-29list: New generic linked list APITavian Barnes
2023-03-28bftw: Refactor bftw_queueTavian Barnes
2023-03-27dir: s/d_fileno/d_ino/Tavian Barnes
2023-03-27dir: Explicitly align struct bfs_dir for the trailing dirent bufferTavian Barnes
2023-03-27dir: Use getdents() on FreeBSD tooTavian Barnes
2023-03-27dir: Use libc's getdents64() wrapper if possibleTavian Barnes
2023-01-31Release 2.6.32.6.3Tavian Barnes
2023-01-31mtab: Explicitly initialize parent_retTavian Barnes
2023-01-25Replace license boilerplate with SPDX tagsTavian Barnes
2023-01-25mtab: Flags are separated with | not ,Tavian Barnes
2023-01-25mtab: Keep parent dirs open during fill_types()Tavian Barnes
2023-01-25mtab: Always fill in the root fstypeTavian Barnes
2023-01-24opt: Move probabilities out of the parserTavian Barnes
2023-01-24opt: Move costs out of the parserTavian Barnes
2023-01-24opt: Move always_{true,false} out of the parserTavian Barnes
2023-01-24opt: Move purity out of the parserTavian Barnes
2023-01-24opt: Use a table for simple range comparisonsTavian Barnes
2023-01-24opt: Use a table for simple predicatesTavian Barnes
2023-01-24opt: Use a table to look up optimizer functionsTavian Barnes
2023-01-22mtab: Mitigate the race between bfs_mtab_parse() and bfs_mtab_fill_types()Tavian Barnes
2023-01-22bfstd: Add O_SEARCH/O_EXEC fallbacksTavian Barnes
2023-01-19bfstd: New wrappers for dirname()/basename()Tavian Barnes
2022-12-09parse: Mark another variable with BFS_UNINIT()Tavian Barnes
2022-12-09config: New BFS_UNINIT() macro for intentionally uninitialized variablesTavian Barnes
2022-12-09Turn on more aggressive format string warningsTavian Barnes
2022-12-08Add BFS_FORMATTER() to vprintf()-type functions tooTavian Barnes
2022-12-08opt: Pass a va_list to bfs_vwarning(), not bfs_warning()Tavian Barnes
2022-12-07trie: Use static_assert() instead of #errorTavian Barnes
2022-12-07config: New BFS_COUNTOF macroTavian Barnes
2022-12-05expr: Rename bfs_expr_has_children() to _is_parent()Tavian Barnes
2022-11-30parse: Fix crash on -xdev -mountTavian Barnes
2022-11-30parse: Pass the right argument when warning about -O9Tavian Barnes
2022-11-30expr: Remove the singleton bfs_{true,false} expressionsTavian Barnes
2022-11-29expr: Remove the synthetic flagTavian Barnes
2022-11-29Dump expression trees in a multi-line formatTavian Barnes
2022-11-21config: Support target_clones on more platformsTavian Barnes
2022-11-17expr: Don't use reftime for -lsTavian Barnes
2022-11-16trie: Limit target_clones to glibcTavian Barnes
2022-11-13Use BFS_COMMAND over "bfs" in more placesTavian Barnes
2022-11-11exec: Fix index overflow parsing -exec +Tavian Barnes
2022-11-10typo: Array bounds are exclusive, not inclusiveTavian Barnes
2022-11-10xregex: Fix build without OnigurumaTavian Barnes
2022-11-10Try to report I/O errors earlier and only onceTavian Barnes
2022-11-10Revert "exec: Don't flush if the user says no to -ok"Tavian Barnes
2022-11-09parse: Squelch an uninitialized variable warningTavian Barnes
2022-11-09trie: Check __has_attribute(target_clones) before using itTavian Barnes
2022-11-09ctx: Flush the user/group caches when executing commandsTavian Barnes