This repository was archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_wait.c
111 lines (96 loc) · 1.93 KB
/
test_wait.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include <sys/wait.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
typedef int(*child_func_t)(int argc, char *argv[]);
void pr_exit(int status);
int wait_demo(child_func_t func);
int child_normal_exit(int argc, char *argv[]);
int child_exit_non_0(int argc, char *argv[]);
int child_abort(int argc, char *argv[]);
int child_sigfpe(int argc, char *argv[]);
int main()
{
int status = 0;
int ret = 0;
ret = wait(&status);
if (ret <= 0)
{
printf("wait error, ret = %d\n", ret);
}
wait_demo(child_normal_exit);
wait_demo(child_exit_non_0);
wait_demo(child_abort);
wait_demo(child_sigfpe);
return 0;
}
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 wait_demo(child_func_t func)
{
pid_t pid = 0;
int status = 0;
pid = fork();
if (pid < 0)
{
printf("fork error\n");
return -1;
}
else if (pid == 0)
{
if (func == NULL)
{
exit(0);
}
else
{
exit(func(0, NULL));
}
}
if (wait(&status) != pid)
{
printf("wait error\n");
}
pr_exit(status);
return 0;
}
int child_normal_exit(int argc, char *argv[])
{
return 0;
}
int child_abort(int argc, char *argv[])
{
abort();
return 0;
}
int child_sigfpe(int argc, char *argv[])
{
int num = 5;
num /= 0;
return 0;
}
int child_exit_non_0(int argc, char *argv[])
{
return 7;
}