2 * Copyright (c) 2004-2009, Jilles Tjoelker
5 * Redistribution and use in source and binary forms, with
6 * or without modification, are permitted provided that the
7 * following conditions are met:
9 * 1. Redistributions of source code must retain the above
10 * copyright notice, this list of conditions and the
11 * following disclaimer.
12 * 2. Redistributions in binary form must reproduce the
13 * above copyright notice, this list of conditions and
14 * the following disclaimer in the documentation and/or
15 * other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
18 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
30 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33 * $FreeBSD: head/bin/pwait/pwait.c 245506 2013-01-16 18:15:25Z delphij $
36 #include <sys/types.h>
37 #include <sys/event.h>
55 fprintf(stderr
, "usage: pwait [-v] pid ...\n");
60 * pwait - wait for processes to terminate
63 main(int argc
, char *argv
[])
68 int opt
, nleft
, n
, i
, duplicate
, status
;
72 while ((opt
= getopt(argc
, argv
, "v")) != -1) {
93 e
= malloc(argc
* sizeof(struct kevent
));
97 for (n
= 0; n
< argc
; n
++) {
99 if (!strncmp(s
, "/proc/", 6)) /* Undocumented Solaris compat */
102 pid
= strtol(s
, &end
, 10);
103 if (pid
< 0 || *end
!= '\0' || errno
!= 0) {
104 warnx("%s: bad process id", s
);
108 for (i
= 0; i
< nleft
; i
++)
109 if (e
[i
].ident
== (uintptr_t)pid
)
112 EV_SET(e
+ nleft
, pid
, EVFILT_PROC
, EV_ADD
, NOTE_EXIT
,
114 if (kevent(kq
, e
+ nleft
, 1, NULL
, 0, NULL
) == -1)
122 n
= kevent(kq
, NULL
, 0, e
, nleft
, NULL
);
126 for (i
= 0; i
< n
; i
++) {
128 if (WIFEXITED(status
))
129 printf("%ld: exited with status %d.\n",
131 WEXITSTATUS(status
));
132 else if (WIFSIGNALED(status
))
133 printf("%ld: killed by signal %d.\n",
137 printf("%ld: terminated.\n",