Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | atomic: Add atomic_{thread,signal}_fence() wrappers | Tavian Barnes | 2024-05-15 | 1 | -0/+19 |
| | |||||
* | xspawn: Mask signals before fork() | Tavian Barnes | 2024-05-15 | 1 | -8/+29 |
| | | | | This prevents signal handlers from running in the child before execve(). | ||||
* | bar: Make SIGWINCH move the cursor out of the bar | Tavian Barnes | 2024-05-15 | 1 | -23/+16 |
| | |||||
* | bar: Defend bfs_bar::fd against signal handler races | Tavian Barnes | 2024-05-09 | 1 | -31/+102 |
| | | | | | This is not currently a problem because bfs_bar_hide() is only ever called while single-threaded, but we might as well program defensively. | ||||
* | build: Sort generated headers | Tavian Barnes | 2024-05-08 | 1 | -4/+4 |
| | |||||
* | dstring: Make dstrprintf() return dchar * | Tavian Barnes | 2024-05-08 | 2 | -4/+4 |
| | |||||
* | build/has/getdents: Squelch warnings | Tavian Barnes | 2024-05-07 | 3 | -9/+6 |
| | |||||
* | ci: Save config.log files | Tavian Barnes | 2024-05-07 | 1 | -5/+30 |
| | |||||
* | distcheck: Don't build with make -s | Tavian Barnes | 2024-05-07 | 1 | -6/+6 |
| | | | | That way I can see the ./configure output on CI. | ||||
* | prelude: Kill #include <sys/param.h> | Tavian Barnes | 2024-05-07 | 1 | -7/+0 |
| | | | | We don't check for `BSD` anymore. | ||||
* | build: Check for 1- and 2-argument getmntent() variants | Tavian Barnes | 2024-05-07 | 4 | -2/+23 |
| | |||||
* | build: Add a check for getmntinfo() | Tavian Barnes | 2024-05-07 | 3 | -2/+12 |
| | |||||
* | mtab: Fix getmntinfo() error check | Tavian Barnes | 2024-05-07 | 1 | -1/+1 |
| | | | | The man pages all say "if an error occurs, zero is returned" | ||||
* | build: Add checks for strtofflags() and string_to_flags() | Tavian Barnes | 2024-05-07 | 4 | -7/+29 |
| | |||||
* | prelude: Remove unused __GLIBC_PREREQ() polyfill | Tavian Barnes | 2024-05-07 | 1 | -4/+0 |
| | |||||
* | stat: Remove __GNU__ guard | Tavian Barnes | 2024-05-07 | 1 | -1/+1 |
| | | | | | The number of people running bfs on Hurd with an outdated glibc version is vanishingly small (I hope). | ||||
* | stat: Prefer fstat(fd) to fstatat(fd, "", AT_EMPTY_PATH) | Tavian Barnes | 2024-05-07 | 1 | -19/+13 |
| | | | | | | | | | This lets us get rid of the runtime probe for AT_EMPTY_PATH support, and should be more efficient anyway. We still use statx(fd, "", AT_EMPTY_PATH) if available. Link: https://lore.kernel.org/linux-fsdevel/CAHk-=wiYnnv7Kw7v+Cp2xU6_Fd-qxQMZuuxZ61LgA2=Gtftw-A@mail.gmail.com/ | ||||
* | prelude: Kill unused __NetBSD_Prereq__() polyfill | Tavian Barnes | 2024-05-07 | 1 | -4/+0 |
| | |||||
* | xtime: Don't use timegm() on FreeBSD+msan | Tavian Barnes | 2024-05-06 | 1 | -1/+3 |
| | |||||
* | xtime: Use the libc's timegm() if present | Tavian Barnes | 2024-05-06 | 4 | -7/+51 |
| | |||||
* | build: Don't look for -s inside VAR=val in $MAKEFLAGS | Tavian Barnes | 2024-05-03 | 1 | -0/+2 |
| | |||||
* | Makefile: Recommend --enable-release over RELEASE=y | Tavian Barnes | 2024-05-02 | 1 | -2/+2 |
| | |||||
* | Release 3.23.2 | Tavian Barnes | 2024-05-02 | 2 | -1/+31 |
| | |||||
* | Prefer ./configure --enable-release to RELEASE=y | Tavian Barnes | 2024-05-02 | 2 | -3/+3 |
| | |||||
* | build: Add some nice aliases to ./configure | Tavian Barnes | 2024-05-01 | 6 | -138/+221 |
| | |||||
* | build: Listen to make -s | Tavian Barnes | 2024-04-30 | 10 | -55/+115 |
| | |||||
* | build: Replace `make config` with a `./configure` script | Tavian Barnes | 2024-04-29 | 63 | -387/+445 |
| | | | | | | | | | | This lets us do more traditional out-of-tree builds like $ ../path/to/bfs/configure $ make The .mk files are moved from ./config to ./build, mostly so that ./configure will auto-complete easily. | ||||
* | bench: Get rid of stray ls | Tavian Barnes | 2024-04-27 | 1 | -1/+0 |
| | |||||
* | config: Just use NOT to implement NOR | Tavian Barnes | 2024-04-26 | 2 | -19/+4 |
| | |||||
* | config: Move .c files into config/{use,has} subdirectories | Tavian Barnes | 2024-04-26 | 43 | -68/+70 |
| | |||||
* | bench: Run make config when building | Tavian Barnes | 2024-04-25 | 1 | -2/+9 |
| | |||||
* | config: Add BFS_USE_LIB* to config.h instead of CPPFLAGS | Tavian Barnes | 2024-04-25 | 9 | -75/+50 |
| | |||||
* | ioq: Fix uninitialized values in ioq_create() cleanup path | Tavian Barnes | 2024-04-24 | 1 | -4/+1 |
| | | | | | | | | I switched from ZALLOC_FLEX() to ALLOC_FLEX() in hopes that msan would catch uninitialized values in ioq_thread_create(), but in doing so, forgot to initialize all fields before the first goto fail. Fixes: f64f76b ("ioq: Copy ring_ops from the previous thread") | ||||
* | printf: Check dynamic format strings more carefully | Tavian Barnes | 2024-04-24 | 2 | -41/+48 |
| | |||||
* | printf: Refactor %y/%Y implementation | Tavian Barnes | 2024-04-24 | 3 | -59/+53 |
| | |||||
* | ctx: Escape paths when reporting errors in bfs_ctx_free() | Tavian Barnes | 2024-04-24 | 1 | -1/+1 |
| | |||||
* | opt: Add missing NULL check in visit_shallow() | Tavian Barnes | 2024-04-24 | 1 | -1/+5 |
| | | | | | visit_shallow() should propagate NULL, but look_up_visitor() dereferences expr to know which visitor to return. | ||||
* | dstring: Add missing va_end() to dstrvcatf() error path | Tavian Barnes | 2024-04-24 | 1 | -0/+1 |
| | |||||
* | eval: Plug memory leak if bfs_opendir() fails | Tavian Barnes | 2024-04-24 | 7 | -18/+32 |
| | |||||
* | build(deps): bump codecov/codecov-action from 3 to 4 | dependabot[bot] | 2024-04-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> | ||||
* | Enable Dependabot for GitHub Actions | Tavian Barnes | 2024-04-22 | 1 | -0/+6 |
| | |||||
* | ci/netbsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -16/+8 |
| | |||||
* | ci/openbsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -14/+8 |
| | |||||
* | ci/freebsd: Use cross-platform-actions | Tavian Barnes | 2024-04-22 | 1 | -14/+8 |
| | |||||
* | ci/codeql: Exclude some alerts | Tavian Barnes | 2024-04-22 | 2 | -1/+14 |
| | | | | And try not to analyze config/*.c | ||||
* | fsade: Implement ACL detection on Illumos | Tavian Barnes | 2024-04-22 | 6 | -13/+32 |
| | |||||
* | config: Check for acl_get_file() | Tavian Barnes | 2024-04-22 | 4 | -8/+10 |
| | |||||
* | fsade: Simplify BFS_CAN_CHECK_CAPABILITIES | Tavian Barnes | 2024-04-22 | 2 | -13/+1 |
| | |||||
* | config: Check for acl_get_{entry,tag_type}() | Tavian Barnes | 2024-04-22 | 4 | -12/+40 |
| | |||||
* | config: Check for extattr_{get,list}_{file,link}() | Tavian Barnes | 2024-04-22 | 7 | -11/+97 |
| | | | | This lets us implement -xattr on DragonFly BSD. |