Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tests: Add some more weird names | Tavian Barnes | 2024-05-28 | 9 | -0/+67 |
| | |||||
* | xregex: Support non-capturing groups with -regextype emacs | Tavian Barnes | 2024-05-27 | 2 | -2/+8 |
| | | | | | Link: https://savannah.gnu.org/bugs/index.php?65770 Link: https://github.com/kkos/oniguruma/issues/296 | ||||
* | man: Document -perm [+/]MODE | Tavian Barnes | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | man: Document -flags | Tavian Barnes | 2024-05-27 | 1 | -0/+4 |
| | |||||
* | eval: Don't turn on NOKERNINFO | Tavian Barnes | 2024-05-27 | 1 | -95/+8 |
| | | | | | Other utilities on FreeBSD like dd, sleep, etc. that respond to SIGINFO still print the kernel info line too. | ||||
* | eval: Use a flag instead of a counter for SIGINFO | Tavian Barnes | 2024-05-27 | 1 | -16/+13 |
| | |||||
* | docs/RELATED: Link to Heirloom find | Tavian Barnes | 2024-05-27 | 1 | -2/+3 |
| | |||||
* | bfstd: Treat ELOOP like ENOENT | Tavian Barnes | 2024-05-27 | 6 | -3/+25 |
| | | | | | | | GNU findutils just made the same change, so looping symlinks will be considered broken rather than a hard error. Link: https://savannah.gnu.org/bugs/?51926 | ||||
* | eval: Print more information on filesystem loops | Tavian Barnes | 2024-05-27 | 3 | -3/+17 |
| | |||||
* | tests/posix: Add a test for -prune with EACCESS | Tavian Barnes | 2024-05-27 | 2 | -0/+9 |
| | | | | Link: https://savannah.gnu.org/bugs/?60207 | ||||
* | eval: Show/hide the bar on SIGINFO/SIGUSR1 | Tavian Barnes | 2024-05-25 | 1 | -1/+125 |
| | |||||
* | bfstd: New helper for open(ctermid()) | Tavian Barnes | 2024-05-25 | 3 | -8/+21 |
| | |||||
* | sighook: Allow sigunhook(NULL) | Tavian Barnes | 2024-05-25 | 2 | -3/+5 |
| | |||||
* | tests: Make diff listen to $NO_COLOR | Tavian Barnes | 2024-05-24 | 1 | -2/+2 |
| | |||||
* | configure: Color the checkmarks | Tavian Barnes | 2024-05-24 | 1 | -2/+12 |
| | |||||
* | build/deps: Fix _CPPFLAGS variable name | Tavian Barnes | 2024-05-24 | 1 | -1/+1 |
| | |||||
* | configure: Use --with/--without for libraries | Tavian Barnes | 2024-05-24 | 16 | -81/+128 |
| | |||||
* | configure: Support more standard autoconf options | Tavian Barnes | 2024-05-24 | 1 | -2/+12 |
| | |||||
* | opt: Don't raise RLIMIT_NOFILE if it would prevent using posix_spawn() | Tavian Barnes | 2024-05-23 | 4 | -0/+22 |
| | | | | | | | | | | If we raise RLIMIT_NOFILE, we have to lower it before calling exec() for compatibility with select(). If posix_spawn() doesn't support that, we fall back to fork(), which is quite a bit slower. Therefore, if we're going to exec() on most files, it's better to keep RLIMIT_NOFILE the same to avoid the fork() cost, even though it makes bftw() somewhat slower. | ||||
* | opt: true is true with probability 1, not 0 | Tavian Barnes | 2024-05-23 | 1 | -1/+1 |
| | |||||
* | opt: Implement a general estimate_odds() function | Tavian Barnes | 2024-05-23 | 1 | -9/+17 |
| | |||||
* | expr: New for_expr macro | Tavian Barnes | 2024-05-23 | 6 | -14/+20 |
| | |||||
* | tests: Make hide_bar actually hide the bar | Tavian Barnes | 2024-05-22 | 2 | -1/+15 |
| | |||||
* | tests: Print progress outside the scroll region | Tavian Barnes | 2024-05-22 | 3 | -44/+132 |
| | |||||
* | tests: Restart wait when interrupted by a signal | Tavian Barnes | 2024-05-22 | 1 | -6/+15 |
| | |||||
* | build: Simplify flags.mk | Tavian Barnes | 2024-05-21 | 1 | -64/+43 |
| | |||||
* | build: Fix ubsan CFLAGS typo | Tavian Barnes | 2024-05-21 | 1 | -1/+1 |
| | |||||
* | build: Allow flags.mk to override command line variables | Tavian Barnes | 2024-05-21 | 4 | -31/+31 |
| | | | | | | | | Previously, during something like ./configure LDFLAGS=..., any additions to LDFLAGS from the generated makefiles were ignored. I had thought that sub-make invocations would allow those variables to be overridden, but that is not the behaviour of make. So instead, set _LDFLAGS etc. in the generated files so that they don't conflict. | ||||
* | prelude: Remove max_align_t polyfill | Tavian Barnes | 2024-05-20 | 3 | -24/+0 |
| | | | | | | This has been fixed in Cosmopolitan. Link: https://github.com/jart/cosmopolitan/issues/944 | ||||
* | trie: Add some more target_clones wrappers | Tavian Barnes | 2024-05-20 | 1 | -2/+12 |
| | |||||
* | prelude: Make sure to grab __GLIBC__ | Tavian Barnes | 2024-05-20 | 1 | -1/+2 |
| | |||||
* | Stop using %m | Tavian Barnes | 2024-05-20 | 10 | -52/+34 |
| | |||||
* | build: Remove unused configure test | Tavian Barnes | 2024-05-19 | 1 | -13/+0 |
| | |||||
* | printf: The ' ' (space) flag must be numeric | Tavian Barnes | 2024-05-19 | 3 | -2/+3 |
| | |||||
* | dir: Use posix_getdents() on all platforms | Tavian Barnes | 2024-05-17 | 1 | -2/+6 |
| | |||||
* | dir: Add support for posix_getdents() | Tavian Barnes | 2024-05-17 | 4 | -4/+35 |
| | | | | | | | | This will be added to the next POSIX standard, and is already implemented in musl. Link: https://www.austingroupbugs.net/view.php?id=697 Link: https://git.musl-libc.org/cgit/musl/commit/?id=1b0d48517f816e98f19111df82f32bfc1608ecec | ||||
* | Cast AT_FDCWD to int for comparisons | Tavian Barnes | 2024-05-17 | 6 | -8/+8 |
| | | | | | Some platforms define AT_FDCWD to a constant like 0xFFFAFDCD that gets typed as an unsigned int. | ||||
* | ci: Surface compiler warnings/errors as GitHub actions messages | Tavian Barnes | 2024-05-17 | 2 | -7/+23 |
| | |||||
* | build: Add missing SPDX headers | Tavian Barnes | 2024-05-17 | 3 | -0/+9 |
| | |||||
* | diag: New helpers to include xstrerror(errno) automatically | Tavian Barnes | 2024-05-17 | 12 | -56/+93 |
| | |||||
* | stat: Support __st_birthtim on OpenBSD | Tavian Barnes | 2024-05-16 | 3 | -0/+13 |
| | |||||
* | distcheck: Disable tsan on FreeBSD | Tavian Barnes | 2024-05-16 | 1 | -1/+1 |
| | | | | | | | | | ThreadSanitizer has some FreeBSD-specific bugs that are too difficult to work around. In particular, deadlock is possible if any signal with a user-defined handler interrupts an atomic operation. Link: https://github.com/llvm/llvm-project/issues/92313 Link: https://github.com/llvm/llvm-project/issues/92437 | ||||
* | Work around https://github.com/llvm/llvm-project/issues/88163 | Tavian Barnes | 2024-05-16 | 4 | -3/+24 |
| | |||||
* | ctx: Try to reset TTY state when terminating abnormally | Tavian Barnes | 2024-05-16 | 3 | -51/+105 |
| | | | | Fixes: https://github.com/tavianator/bfs/issues/138 | ||||
* | bar: Use atsigexit() to reset the bar | Tavian Barnes | 2024-05-16 | 1 | -132/+47 |
| | |||||
* | sighook: New utilities for hooking signals | Tavian Barnes | 2024-05-16 | 7 | -0/+777 |
| | | | | This allows multiple hooks to be installed for a single signal. | ||||
* | atomic: Add a spin_loop() hint | Tavian Barnes | 2024-05-15 | 1 | -0/+14 |
| | |||||
* | 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 |
| |