Wait for an arbitrary process.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Damien Goutte-Gattat dd15b4a138 Fix man page header.
Use correct arguments to the .TH command.
3 years ago
lib Die on memory allocation error 10 years ago
m4 Initial commit 10 years ago
src Fix kevent flags 10 years ago
.gitignore Initial commit 10 years ago
AUTHORS Update project location. 5 years ago
COPYING Add docs files 10 years ago
Makefile.am Add man page 10 years ago
NEWS Update docs 10 years ago
README Update project location. 5 years ago
configure.ac Update docs 10 years ago
wait4.1.in Fix man page header. 3 years ago

README

wait4 - Wait for an arbitrary process
=====================================

Description
-----------
wait4 allows its user to wait for the termination of an arbitrary
process specified by its PID.  It works as the standard shell command
wait, but is not limited to waiting to the child processes of the
current shell.

On GNU/Linux systems where the Netlink interface is available, wait4 is
directly informed by the kernel as soon as the target process is
terminated, and the exit code of that process is used as the exit code
of wait4 itself.  On other systems, wait4 acts by pretending to send a
signal to the target process every second; in that case, the exit code
is always 0, as there is no way to retrieve the exit code of the target
process.

When using Netlink, wait4 must be run as setuid root, as only a
privileged process can bind to an AF_NETLINK address; root privileges
are dropped immediately after the bind(2) call.


BSD kevent support
------------------
Starting from version 0.3.0, wait4 should be able to make use of the
kevent(2) call found on BSD systems, thus avoiding the signal-based
fallback method on those systems.  This support has currently been
tested on NetBSD 6.0.1.


Copying
-------
wait4 is distributed under the terms of the GNU General Public License,
version 3 or higher.  The full license is included in the COPYING file
of the source distribution.


Homepage and contact
--------------------
The project homepage, where release tarballs may be found, is located at
<https://incenp.org/dvlpt/wait4.html>.  The latest source code is
available at <https://git.incenp.org/damien/wait4>.