diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-04-15 06:30:46 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-04-15 06:30:46 +0000 |
commit | 7d0199963a2ec019270ee187f8c9cb8adb25dac1 (patch) | |
tree | dfee736b516e1e996364a23059d590542196c85c /src/libstddjb/waitn_reap_posix.c | |
parent | 7c6ca159eb3cb6e36cbdfd613547d3b0b99e7684 (diff) | |
download | skalibs-7d0199963a2ec019270ee187f8c9cb8adb25dac1.tar.xz |
Add waitn_posix() and waitn_reap_posix()
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstddjb/waitn_reap_posix.c')
-rw-r--r-- | src/libstddjb/waitn_reap_posix.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libstddjb/waitn_reap_posix.c b/src/libstddjb/waitn_reap_posix.c new file mode 100644 index 0000000..4a6994f --- /dev/null +++ b/src/libstddjb/waitn_reap_posix.c @@ -0,0 +1,22 @@ +/* ISC license. */ + +#include <sys/wait.h> + +#include <skalibs/djbunix.h> + +int waitn_reap_posix (pid_t *pids, unsigned int len, int *w) +{ + pid_t wanted = len ? pids[len-1] : 0 ; + unsigned int n = 0 ; + while (len) + { + int wstat ; + int r = wait_pids_nohang(pids, len, &wstat) ; + if (r < 0) return r ; + else if (!r) break ; + if (pids[r-1] == wanted) *w = wstat ; + pids[r-1] = pids[--len] ; + n++ ; + } + return n ; +} |