]>
diplodocus.org Git - nmh/blob - sbr/pidstatus.c
3 * pidstatus.c -- report child's status
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
13 * auto-generated header
18 # define WTERMSIG(s) ((int)((s) & 0x7F))
22 # define WCOREDUMP(s) ((s) & 0x80)
26 * Return 0 if the command exited with an exit code of zero, a nonzero code
29 * Print out an appropriate status message we didn't exit with an exit code
34 pidstatus (int status
, FILE *fp
, char *cp
)
39 * I have no idea what this is for (rc)
40 * so I'm commenting it out for right now.
42 * if ((status & 0xff00) == 0xff00)
46 /* If child process returned normally */
47 if (WIFEXITED(status
)) {
48 if ((signum
= WEXITSTATUS(status
))) {
50 fprintf (fp
, "%s: ", cp
);
51 fprintf (fp
, "exit %d\n", signum
);
54 } else if (WIFSIGNALED(status
)) {
55 /* If child process terminated due to receipt of a signal */
56 signum
= WTERMSIG(status
);
57 if (signum
!= SIGINT
) {
59 fprintf (fp
, "%s: ", cp
);
60 fprintf (fp
, "signal %d", signum
);
61 if (signum
>= 0 && signum
< (int) sizeof(sigmsg
) &&
62 sigmsg
[signum
] != NULL
)
63 fprintf (fp
, " (%s%s)\n", sigmsg
[signum
],
64 WCOREDUMP(status
) ? ", core dumped" : "");
66 fprintf (fp
, "%s\n", WCOREDUMP(status
) ? " (core dumped)" : "");