Skip to content

Commit ec812aa

Browse files
Update man page.
1 parent 37b9001 commit ec812aa

File tree

2 files changed

+43
-65
lines changed

2 files changed

+43
-65
lines changed

waitpid.1

+40-58
Original file line numberDiff line numberDiff line change
@@ -8,85 +8,67 @@
88
.fi
99
.sp
1010
..
11-
.TH WAITPID 1 "February 2013" "waitpid 0.0.2" "User Commands"
11+
.TH WAITPID 1 "March 2014" "waitpid 0.2" "User Commands"
1212
.SH NAME
1313
waitpid \- wait for process termination
1414
.SH SYNOPSIS
1515
.B waitpid
1616
[\fIOPTION\fR]... \fIPID\fR...
1717
.SH DESCRIPTION
18-
.B waitpid
19-
traces the execution of the processes with the
20-
given PIDs and exits as soon as all the traced
21-
processes have terminated.
22-
.PP
23-
When the
24-
.B \-\-verbose
25-
option is specified,
26-
.B waitpid
27-
prints information about the signals received by
28-
the traced processes and their exit statuses.
29-
Each line is prefixed by the PID of the process
30-
which status has changed. Here is an example
31-
output that could be produced by the command
32-
``waitpid \-v 5060'':
33-
.CW
34-
5060: attached to process
35-
5060: received SIGINT: Interrupt
36-
5060: exited with status 0
37-
.CE
38-
If instead of exiting normally, the process has
39-
been killed by a signal, the output would be:
40-
.CW
41-
5060: attached to process
42-
5060: killed by SIGKILL
43-
.CE
44-
.SH OPTIONS
45-
.TP 14
46-
.TP
47-
\fB\-h\fR, \fB\-\-help\fR
48-
Display an help message and exit.
49-
.TP
50-
\fB\-\-version\fR
51-
Display version information and exit.
18+
Wait until all the specified processes have exited.
5219
.TP
5320
\fB\-f\fR, \fB\-\-force\fR
54-
When this option is specified,
55-
.B waitpid
56-
won't exit with an error if a given PID cannot be
57-
traced. (Since 0.0.2)
21+
do not fail if one of the PID specified does
22+
not correspond to a running process.
23+
.TP
24+
\fB\-s\fR, \fB\-\-sleep\-interval\fR=\fIN\fR
25+
when
26+
.BR ptrace (2)
27+
is not available, check for the existence of the
28+
processes every
29+
.I N
30+
seconds (default: 0.5).
5831
.TP
5932
\fB\-v\fR, \fB\-\-verbose\fR
60-
Print information about status changes of the
61-
traced processes. Status changes are: a process
62-
has terminated or a process has been sent a
63-
signal. (Since 0.0.2)
64-
.SH "EXIT STATUS"
65-
.B waitpid
66-
exits with the same exit status of the traced process.
67-
When multiple processes are traced,
68-
.B waitpid
69-
exits with the same status of the last process
70-
that has terminated.
33+
display a message on the standard output every
34+
time a process exits or receives a signal.
35+
.TP
36+
\fB\-h\fR, \fB\-\-help\fR
37+
display this help and exit
38+
.TP
39+
\fB\-\-version\fR
40+
output version information and exit
7141
.SH NOTES
72-
.B waitpid
73-
makes use of the
42+
When possible, this program will use the
43+
.BR ptrace (2)
44+
system call to wait for programs. With
45+
.BR ptrace (2)
46+
the
47+
.B --sleep-interval
48+
option is ignored, as events are reported immediately.
49+
Additionally, if
50+
.B --verbose
51+
is specified, the program will display exit
52+
statuses and signals delivered to the processes.
53+
54+
If
7455
.BR ptrace (2)
75-
system call. On most systems, this call can be
76-
performed only by the root user. The file
77-
.B /etc/sysctl.d/10-ptrace.conf
78-
can be adjusted to modify this behavior.
56+
is not available, processes are checked periodically;
57+
.B --sleep-interval
58+
is not ignored and
59+
.B --verbose
60+
does not report detailed information about
61+
exit statuses and signals delivered.
7962
.SH AUTHOR
8063
Andrea Corbellini <[email protected]>
8164
.SH "REPORTING BUGS"
8265
Report bugs to https://github.com/andrea-corbellini/waitpid
8366
.SH COPYRIGHT
84-
Copyright (c) 2012, 2013 Andrea Corbellini. This
67+
Copyright (c) 2012-2014 Andrea Corbellini. This
8568
software is released under the GNU GPL version 3
8669
or later <http://gnu.org/licenses/gpl.html>. This
8770
is free software: you are free to change and
8871
redistribute it. There is NO WARRANTY, to the
8972
extent permitted by law.
9073
.SH "SEE ALSO"
9174
.BR ptrace (2)
92-
.BR wait (2)

waitpid.c

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* waitpid -- wait for process(es) termination
1+
/* waitpid -- wait for process termination
22
Copyright (C) 2012-2014 Andrea Corbellini <[email protected]>
33
44
This program is free software: you can redistribute it and/or modify
@@ -110,18 +110,14 @@ print_usage (int status)
110110
puts (_("\
111111
\n\
112112
When possible, this program will use the ptrace(2) system call to\n\
113-
wait for programs. With ptrace(2), the `--sleep-interval' option is\n\
113+
wait for programs. With ptrace(2) the `--sleep-interval' option is\n\
114114
ignored, as events are reported immediately. Additionally, if\n\
115115
`--verbose' is specified, the program will display exit statuses\n\
116116
and signals delivered to the processes.\n\
117117
\n\
118118
If ptrace(2) is not available, processes are checked periodically;\n\
119119
`--sleep-interval' is not ignored and `--verbose' does not report\n\
120-
detailed information about exit statuses and signals delivered.\n\
121-
\n\
122-
The program will use ptrace(2) only if the host supports it and if\n\
123-
the program has the necessary permissions. See `man ptrace' for\n\
124-
more information."));
120+
detailed information about exit statuses and signals delivered."));
125121
}
126122

127123
exit (status);

0 commit comments

Comments
 (0)