diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-07-27 19:10:16 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-07-27 19:11:39 -0400 |
commit | 085bb402c7b2c2f96624fb0523ff3f9686fe26d9 (patch) | |
tree | 6c9c4240342fdad2f3d8a131265952659f044e46 /build/has | |
parent | c43d54826fd92017b9d7d49a5f660d98c0393e02 (diff) | |
download | bfs-085bb402c7b2c2f96624fb0523ff3f9686fe26d9.tar.xz |
xspawn: Use _Fork() if available
This completes the workaround for bfs_spawn() hanging on FreeBSD with
ASan enabled.
Link: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=280318
Diffstat (limited to 'build/has')
-rw-r--r-- | build/has/_Fork.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/has/_Fork.c b/build/has/_Fork.c new file mode 100644 index 0000000..4d7fbd3 --- /dev/null +++ b/build/has/_Fork.c @@ -0,0 +1,8 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <unistd.h> + +int main(void) { + return _Fork(); +} |