-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwait.c
More file actions
53 lines (52 loc) · 1.18 KB
/
wait.c
File metadata and controls
53 lines (52 loc) · 1.18 KB
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
/*************************************************************************
> File Name: wait.c
> Author: jianghechao
> Mail: 591378033@qq.com
> Created Time: Sun 04 May 2014 01:03:31 AM CST
************************************************************************/
#include<stdio.h>
#include"apue.h"
#include<sys/wait.h>
void pr_exit(int status)
{
if(WIFEXITED(status))
{
printf("normal temination,exit status = %d\n",WEXITSTATUS(status));
}
else if(WIFSIGNALED(status))
printf("abnormal temination ,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()
{
pid_t pid;
int status;
if((pid=fork())<0)
perror("fork");
else if(pid==0)
exit(7);
if(wait(&status)!=pid)
perror("wait error");
pr_exit(status);
if((pid=fork())<0)
perror("fork error");
else if(pid==0)
abort();
if(wait(&status)!=pid)
perror("wait error");
pr_exit(status);
if((pid=fork())<0)
perror("fork error");
else if(pid==0)
status /=0;
if(wait(&status)!=pid)
perror("wait error");
pr_exit(status);
return 0;
}