]> git.ipfire.org Git - thirdparty/bash.git/blame - builtins/wait.def
Bash-4.3 distribution sources and documentation
[thirdparty/bash.git] / builtins / wait.def
CommitLineData
726f6388
JA
1This file is wait.def, from which is created wait.c.
2It implements the builtin "wait" in Bash.
3
ac50fbac 4Copyright (C) 1987-2013 Free Software Foundation, Inc.
726f6388
JA
5
6This file is part of GNU Bash, the Bourne Again SHell.
7
3185942a
JA
8Bash is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
726f6388 12
3185942a
JA
13Bash is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
726f6388 17
3185942a
JA
18You should have received a copy of the GNU General Public License
19along with Bash. If not, see <http://www.gnu.org/licenses/>.
726f6388 20
726f6388
JA
21$BUILTIN wait
22$FUNCTION wait_builtin
23$DEPENDS_ON JOB_CONTROL
24$PRODUCES wait.c
ac50fbac 25$SHORT_DOC wait [-n] [id ...]
3185942a
JA
26Wait for job completion and return exit status.
27
ac50fbac 28Waits for each process identified by an ID, which may be a process ID or a
3185942a
JA
29job specification, and reports its termination status. If ID is not
30given, waits for all currently active child processes, and the return
31status is zero. If ID is a a job specification, waits for all processes
ac50fbac
CR
32in that job's pipeline.
33
34If the -n option is supplied, waits for the next job to terminate and
35returns its exit status.
3185942a
JA
36
37Exit Status:
ac50fbac
CR
38Returns the status of the last ID; fails if ID is invalid or an invalid
39option is given.
726f6388
JA
40$END
41
42$BUILTIN wait
43$FUNCTION wait_builtin
44$DEPENDS_ON !JOB_CONTROL
ac50fbac 45$SHORT_DOC wait [pid ...]
3185942a
JA
46Wait for process completion and return exit status.
47
ac50fbac
CR
48Waits for each process specified by a PID and reports its termination status.
49If PID is not given, waits for all currently active child processes,
50and the return status is zero. PID must be a process ID.
3185942a
JA
51
52Exit Status:
ac50fbac
CR
53Returns the status of the last PID; fails if PID is invalid or an invalid
54option is given.
726f6388
JA
55$END
56
ccc6cda3
JA
57#include <config.h>
58
59#include "../bashtypes.h"
726f6388 60#include <signal.h>
ccc6cda3
JA
61
62#if defined (HAVE_UNISTD_H)
63# include <unistd.h>
64#endif
65
f73dda09
JA
66#include <chartypes.h>
67
d166f048
JA
68#include "../bashansi.h"
69
726f6388
JA
70#include "../shell.h"
71#include "../jobs.h"
ccc6cda3 72#include "common.h"
d166f048 73#include "bashgetopt.h"
726f6388 74
7117c2d2 75extern int wait_signal_received;
726f6388 76
bb70624e
JA
77procenv_t wait_intr_buf;
78
726f6388
JA
79/* Wait for the pid in LIST to stop or die. If no arguments are given, then
80 wait for all of the active background processes of the shell and return
81 0. If a list of pids or job specs are given, return the exit status of
82 the last one waited for. */
ccc6cda3 83
28ef6c31
JA
84#define WAIT_RETURN(s) \
85 do \
86 { \
87 interrupt_immediately = old_interrupt_immediately;\
ac50fbac 88 wait_signal_received = 0; \
28ef6c31
JA
89 return (s);\
90 } \
91 while (0)
ccc6cda3
JA
92
93int
726f6388
JA
94wait_builtin (list)
95 WORD_LIST *list;
96{
ac50fbac 97 int status, code, opt, nflag;
28ef6c31 98 volatile int old_interrupt_immediately;
ccc6cda3 99
f73dda09
JA
100 USE_VAR(list);
101
ac50fbac
CR
102 nflag = 0;
103 reset_internal_getopt ();
104 while ((opt = internal_getopt (list, "n")) != -1)
105 {
106 switch (opt)
107 {
108#if defined (JOB_CONTROL)
109 case 'n':
110 nflag = 1;
111 break;
112#endif
113 default:
114 builtin_usage ();
115 return (EX_USAGE);
116 }
117 }
7117c2d2 118 list = loptend;
726f6388 119
28ef6c31 120 old_interrupt_immediately = interrupt_immediately;
ac50fbac 121#if 0
726f6388 122 interrupt_immediately++;
ac50fbac 123#endif
726f6388 124
bb70624e
JA
125 /* POSIX.2 says: When the shell is waiting (by means of the wait utility)
126 for asynchronous commands to complete, the reception of a signal for
127 which a trap has been set shall cause the wait utility to return
128 immediately with an exit status greater than 128, after which the trap
129 associated with the signal shall be taken.
130
131 We handle SIGINT here; it's the only one that needs to be treated
132 specially (I think), since it's handled specially in {no,}jobs.c. */
133 code = setjmp (wait_intr_buf);
134 if (code)
135 {
7117c2d2 136 status = 128 + wait_signal_received;
bb70624e
JA
137 WAIT_RETURN (status);
138 }
139
726f6388
JA
140 /* We support jobs or pids.
141 wait <pid-or-job> [pid-or-job ...] */
142
ac50fbac
CR
143#if defined (JOB_CONTROL)
144 if (nflag)
145 {
146 status = wait_for_any_job ();
147 if (status < 0)
148 status = 127;
149 WAIT_RETURN (status);
150 }
151#endif
152
726f6388
JA
153 /* But wait without any arguments means to wait for all of the shell's
154 currently active background processes. */
ccc6cda3 155 if (list == 0)
726f6388
JA
156 {
157 wait_for_background_pids ();
ccc6cda3 158 WAIT_RETURN (EXECUTION_SUCCESS);
726f6388
JA
159 }
160
ccc6cda3 161 status = EXECUTION_SUCCESS;
726f6388
JA
162 while (list)
163 {
164 pid_t pid;
165 char *w;
7117c2d2 166 intmax_t pid_value;
726f6388
JA
167
168 w = list->word->word;
f73dda09 169 if (DIGIT (*w))
726f6388 170 {
f73dda09 171 if (legal_number (w, &pid_value) && pid_value == (pid_t)pid_value)
726f6388 172 {
f73dda09 173 pid = (pid_t)pid_value;
726f6388
JA
174 status = wait_for_single_pid (pid);
175 }
176 else
177 {
7117c2d2 178 sh_badpid (w);
ccc6cda3 179 WAIT_RETURN (EXECUTION_FAILURE);
726f6388
JA
180 }
181 }
182#if defined (JOB_CONTROL)
b80f6443 183 else if (*w && *w == '%')
726f6388
JA
184 /* Must be a job spec. Check it out. */
185 {
186 int job;
187 sigset_t set, oset;
188
189 BLOCK_CHILD (set, oset);
190 job = get_job_spec (list);
191
95732b49 192 if (INVALID_JOB (job))
726f6388
JA
193 {
194 if (job != DUP_JOB)
7117c2d2 195 sh_badjob (list->word->word);
726f6388
JA
196 UNBLOCK_CHILD (oset);
197 status = 127; /* As per Posix.2, section 4.70.2 */
198 list = list->next;
199 continue;
200 }
201
202 /* Job spec used. Wait for the last pid in the pipeline. */
203 UNBLOCK_CHILD (oset);
204 status = wait_for_job (job);
205 }
206#endif /* JOB_CONTROL */
207 else
208 {
7117c2d2 209 sh_badpid (w);
726f6388
JA
210 status = EXECUTION_FAILURE;
211 }
212 list = list->next;
213 }
ccc6cda3
JA
214
215 WAIT_RETURN (status);
726f6388 216}