|
8 | 8 | .fi
|
9 | 9 | .sp
|
10 | 10 | ..
|
11 |
| -.TH WAITPID 1 "February 2013" "waitpid 0.0.2" "User Commands" |
| 11 | +.TH WAITPID 1 "March 2014" "waitpid 0.2" "User Commands" |
12 | 12 | .SH NAME
|
13 | 13 | waitpid \- wait for process termination
|
14 | 14 | .SH SYNOPSIS
|
15 | 15 | .B waitpid
|
16 | 16 | [\fIOPTION\fR]... \fIPID\fR...
|
17 | 17 | .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. |
52 | 19 | .TP
|
53 | 20 | \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). |
58 | 31 | .TP
|
59 | 32 | \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 |
71 | 41 | .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 |
74 | 55 | .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. |
79 | 62 | .SH AUTHOR
|
80 | 63 | Andrea Corbellini < [email protected]>
|
81 | 64 | .SH "REPORTING BUGS"
|
82 | 65 | Report bugs to https://github.com/andrea-corbellini/waitpid
|
83 | 66 | .SH COPYRIGHT
|
84 |
| -Copyright (c) 2012, 2013 Andrea Corbellini. This |
| 67 | +Copyright (c) 2012-2014 Andrea Corbellini. This |
85 | 68 | software is released under the GNU GPL version 3
|
86 | 69 | or later <http://gnu.org/licenses/gpl.html>. This
|
87 | 70 | is free software: you are free to change and
|
88 | 71 | redistribute it. There is NO WARRANTY, to the
|
89 | 72 | extent permitted by law.
|
90 | 73 | .SH "SEE ALSO"
|
91 | 74 | .BR ptrace (2)
|
92 |
| -.BR wait (2) |
0 commit comments