summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Expand)Author
2023-10-06bar: Replace volatile sig_atomic_t with actual atomicsTavian Barnes
2023-10-06alloc: Test allocation size overflowsTavian Barnes
2023-10-05bfstd: Add a thread-safe wrapper for strerror()Tavian Barnes
2023-10-05thread: Define thread_localTavian Barnes
2023-10-05config: Fold !__FreeBSD__ into BFS_USE_SYS_CAPABILITY_HTavian Barnes
2023-10-04dstring: Limit the special dchar typedef to lint buildsTavian Barnes
2023-10-03thread: s/call_once/invoke_once/Tavian Barnes
2023-10-02ioq: Use io_uringTavian Barnes
2023-09-27Formatting fixesTavian Barnes
2023-09-26bit: Fix UINTPTR_WIDTH typoTavian Barnes
2023-09-26bit: Use predefined __*_WIDTH__ macros if we canTavian Barnes
2023-09-26dstring: New dchar typedef for dynamic stringsTavian Barnes
2023-09-25Use the new list macrosTavian Barnes
2023-09-25list: New for_[s]list() macrosTavian Barnes
2023-09-25list: Unify formattingTavian Barnes
2023-09-25list: New [S]LIST_EMPTY() macrosTavian Barnes
2023-09-25list: New [S]LIST_ITEM_INIT() macrosTavian Barnes
2023-09-25list: Use (void)(...) rather than do { ... } while (0)Tavian Barnes
2023-09-13bftw: Share the bftw_state between iterations of ids/edsTavian Barnes
2023-09-12parse: Give more ephemeral_fds to -no{user,group}Tavian Barnes
2023-09-06Release 3.0.23.0.2Tavian Barnes
2023-09-06bfstd: Work around a FreeBSD-specific msan issueTavian Barnes
2023-09-06bfstd: Skip a whole loop in dollar_quote() if possibleTavian Barnes
2023-09-06bfstd: Fix printable_len() off-by-oneTavian Barnes
2023-09-06bfstd: Fix an OOB string index in xmbrtowc()Tavian Barnes
2023-09-06bftw: Enforce the dirlimit strictlyTavian Barnes
2023-08-31pwcache: Don't use _SC_GET{PW,GR}_R_SIZE_MAXTavian Barnes
2023-08-31pwcache: Arena-allocate struct passwd/groupTavian Barnes
2023-08-31alloc: New varena_grow() functionTavian Barnes
2023-08-31trie: New trie_clear() functionTavian Barnes
2023-08-31alloc: New [v]arena_clear() functionsTavian Barnes
2023-08-23Work around https://github.com/llvm/llvm-project/issues/64946Tavian Barnes
2023-08-23ioq: New ioq_slot_monitor() helperTavian Barnes
2023-08-14parse: Allow -files0-from an empty set of pathsTavian Barnes
2023-08-08bfstd: Don't label a declarationTavian Barnes
2023-08-07stat: Don't check for statx() mask bits we already checked forTavian Barnes
2023-08-07bfstd: Check multiple chars at once for isascii()Tavian Barnes
2023-08-07bfstd: Speed up wordesc() by caching isprint()/isspace()Tavian Barnes
2023-07-24bit: Add a cast to squelch -Wsign-compareTavian Barnes
2023-07-18Release 3.0.13.0.1Tavian Barnes
2023-07-18bftw: Use bftw_file->next for multiple listsTavian Barnes
2023-07-18bftw: Use a larger ioq depthTavian Barnes
2023-07-18bftw: Add a queue of directories to unwrapTavian Barnes
2023-07-18bftw: Add dirs to the end of the queue in bftw_ioq_pop()Tavian Barnes
2023-07-17bftw: Use separate queues for open and closed directoriesTavian Barnes
2023-07-17bftw: Check that file->fd == bfs_dirfd(file->dir) earlierTavian Barnes
2023-07-17bftw: Reserve space in the cache before opening filesTavian Barnes
2023-07-17bftw: Pass the whole bftw_state to bftw_openat()Tavian Barnes
2023-07-17bftw: Add bfs_dir allocation wrappersTavian Barnes
2023-07-13bfstd: Add an ASCII fast path to wordesc()Tavian Barnes