-
Notifications
You must be signed in to change notification settings - Fork 307
/
8.4.c
73 lines (59 loc) · 1.39 KB
/
8.4.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
void pr_exit(int status)
{
if (WIFEXITED(status)) {
printf("normal termination, exit status = %d\n", WEXITSTATUS(status));
} else if (WIFSIGNALED(status)) {
printf("abnormal termination, signal number = %d%s\n",
WTERMSIG(status),
#ifdef WCOREDUMP
WCOREDUMP(status) ? " (core file generated)" : ""
#else
""
#endif
);
} else if (WIFSTOPPED(status)) {
printf("child stopped, signal number = %d\n", WSTOPSIG(status));
}
}
int main(void)
{
pid_t pid;
int status;
if (0 > (pid = fork())) {
printf("fork error\n");
exit(-1);
} else if (0 == pid) {
exit(7);
}
if (pid != wait(&status)) {
printf("wait error\n");
exit(-1);
}
pr_exit(status);
if (0 > (pid = fork())) {
printf("fork error\n");
exit(-1);
} else if (0 == pid) {
abort();
}
if (pid != wait(&status)) {
printf("wait error\n");
exit(-1);
}
pr_exit(status);
if (0 > (pid = fork())) {
printf("fork error\n");
exit(-1);
} else if (0 == pid) {
status /= 0;
}
if (pid != wait(&status)) {
printf("wait error\n");
exit(-1);
}
pr_exit(status);
return 0;
}