-
Notifications
You must be signed in to change notification settings - Fork 307
/
8.13.c
77 lines (64 loc) · 1.51 KB
/
8.13.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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/wait.h>
int system(const char *cmdstring)
{
pid_t pid;
int status;
if (NULL == cmdstring) {
return 1;
}
if ((pid = fork()) < 0) {
status = -1;
} else if (0 == pid) {
execl("/bin", "sh", "-C", cmdstring, (char *)0);
_exit(127);
} else {
while (waitpid(pid, &status, 0) < 0) {
if (errno != EINTR) {
status = -1;
break;
}
}
}
return status;
}
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)
{
int status;
if ((status = system("date")) < 0) {
printf("system() error\n");
exit(-1);
}
pr_exit(status);
if ((status = system("nosuchcommand")) < 0) {
printf("system() error\n");
exit(-1);
}
pr_exit(status);
if ((status = system("who; exit 44")) < 0) {
printf("system() error\n");
exit(-1);
}
pr_exit(status);
return 0;
}