Searched refs:wait_status (Results 1 - 7 of 7) sorted by relevance

/haiku-buildtools/legacy/binutils/binutils/
H A Ddlltool.c1142 int pid, wait_status; local
1183 pid = pwait (pid, & wait_status, 0);
1190 else if (WIFSIGNALED (wait_status))
1193 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
1195 else if (WIFEXITED (wait_status))
1197 if (WEXITSTATUS (wait_status) != 0)
1200 what, WEXITSTATUS (wait_status));
H A Ddllwrap.c348 int pid, wait_status, retcode; local
405 pid = pwait (pid, &wait_status, 0);
411 else if (WIFSIGNALED (wait_status))
413 warn (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
416 else if (WIFEXITED (wait_status))
418 if (WEXITSTATUS (wait_status) != 0)
420 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status));
H A Dresrc.c183 int pid, wait_status, retcode;
266 pid = pwait (pid, &wait_status, 0);
273 else if (WIFSIGNALED (wait_status))
275 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
278 else if (WIFEXITED (wait_status))
280 if (WEXITSTATUS (wait_status) != 0)
283 WEXITSTATUS (wait_status));
182 int pid, wait_status, retcode; local
/haiku-buildtools/legacy/gcc/gcc/
H A Dprotoize.c2093 int wait_status, pid;
2109 pid = pwait (pid, &wait_status, 0);
2115 if (WIFSIGNALED (wait_status))
2118 pname, WTERMSIG (wait_status));
2121 if (WIFEXITED (wait_status))
2123 if (WEXITSTATUS (wait_status) != 0)
2126 pname, compile_params[0], WEXITSTATUS (wait_status));
2077 int wait_status, pid; local
/haiku-buildtools/binutils/binutils/
H A Ddlltool.c1321 int pid, wait_status; local
1363 pid = pwait (pid, & wait_status, 0);
1370 else if (WIFSIGNALED (wait_status))
1373 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
1375 else if (WIFEXITED (wait_status))
1377 if (WEXITSTATUS (wait_status) != 0)
1380 what, WEXITSTATUS (wait_status));
H A Ddllwrap.c350 int pid, wait_status, retcode; local
408 pid = pwait (pid, &wait_status, 0);
414 else if (WIFSIGNALED (wait_status))
416 warn (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
419 else if (WIFEXITED (wait_status))
421 if (WEXITSTATUS (wait_status) != 0)
423 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status));
H A Dresrc.c201 int pid, wait_status, retcode;
285 pid = pwait (pid, &wait_status, 0);
292 else if (WIFSIGNALED (wait_status))
294 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
297 else if (WIFEXITED (wait_status))
299 if (WEXITSTATUS (wait_status) != 0)
302 WEXITSTATUS (wait_status));
200 int pid, wait_status, retcode; local

Completed in 187 milliseconds