diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-31 13:25:04 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-31 13:25:30 -0400 |
commit | 8aaf670c13ade259f7bcdd50332968c1c6290b34 (patch) | |
tree | 8794f55c7777f560c37ebcebb78a4a6be30d92f1 /src/exec.c | |
parent | 06ee53d5b1fc58073aaa3d57f6073256d13502f2 (diff) | |
download | bfs-8aaf670c13ade259f7bcdd50332968c1c6290b34.tar.xz |
bfstd: New xwaitpid() wrapper
Diffstat (limited to 'src/exec.c')
-rw-r--r-- | src/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -390,7 +390,7 @@ fail: } int wstatus; - if (waitpid(pid, &wstatus, 0) < 0) { + if (xwaitpid(pid, &wstatus, 0) < 0) { return -1; } |