]> git.ipfire.org Git - thirdparty/util-linux.git/commit
waitpid: add new command
authorThomas Weißschuh <thomas@t-8ch.de>
Sat, 24 Dec 2022 04:27:04 +0000 (04:27 +0000)
committerThomas Weißschuh <thomas@t-8ch.de>
Wed, 4 Jan 2023 01:18:33 +0000 (01:18 +0000)
commit550d32c49e13c219f4e7f895241e0bdcd6fa55ec
tree8a03416e5b1df4a504a88e1d411a0f8ab5f496b7
parentfe73ef9789132f7e3bdcae5cecd3a8dd40876f92
waitpid: add new command

This command implements waiting for the exit of multiple processes.
Especially it allows to wait for process that are not children of the
current process.

In contrast to wait(1P) it does not allow to retrieve the processes exit
codes.
12 files changed:
bash-completion/waitpid [new file with mode: 0644]
configure.ac
include/c.h
include/strutils.h
meson.build
misc-utils/Makemodule.am
misc-utils/meson.build
misc-utils/waitpid.1.adoc [new file with mode: 0644]
misc-utils/waitpid.c [new file with mode: 0644]
tests/commands.sh
tests/expected/misc/waitpid [new file with mode: 0644]
tests/ts/misc/waitpid [new file with mode: 0755]