-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path05_waitpid_4.c
36 lines (29 loc) · 1022 Bytes
/
05_waitpid_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
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
/* Evitare la creazione di zombie chiamando due volte la funzione fork(), in
modo tale che l'orfano venga subito adottato da init. */
int main(int argc, char *argv[]) {
pid_t pid;
if ((pid = fork()) < 0) {
fprintf(stderr, "Err.(%s) fork() failed\n", strerror(errno));
exit(EXIT_FAILURE);
} else if (pid == 0) { /* Primo figlio */
if ((pid = fork()) < 0) {
fprintf(stderr, "Err.(%s) fork() failed\n", strerror(errno));
exit(EXIT_FAILURE);
} else if (pid > 0) /* Padre della seconda fork(); primo figlio */
exit(EXIT_SUCCESS);
sleep(2);
printf("Secondo figlio, PPID = %ld\n", (long)getppid());
exit(EXIT_SUCCESS);
}
if (waitpid(pid, NULL, 0) != pid) { /* Attesa che il primo figlio termini */
fprintf(stderr, "Err.(%s) waitpid() failed\n", strerror(errno));
exit(EXIT_FAILURE);
}
return(EXIT_SUCCESS);
}