-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.c
51 lines (48 loc) · 896 Bytes
/
tree.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
/*
* Buduje ładne drzewko procesów.
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/types.h>
int spawn(int depth) {
if (depth == 0) return 0;
if (fork()) {
int old = negateexit(-1);
if (!fork()) {
return spawn(depth - 1);
} else {
negateexit(old);
}
} else {
return spawn(depth - 1);
}
return 1;
}
int negate(int a) {
if (a) return 0;
return 1;
}
int main() {
if (spawn(6)) { // Dla 7 na pewno zapełnisz tablicę PM
int c1, c2;
int result = negateexit(0);
negateexit(result);
wait(&c1);
c1 = WEXITSTATUS(c1);
wait(&c2);
c2 = WEXITSTATUS(c2);
// Oba powinny zwrócić 0
if (c1 || c2) {
// Błąd
return negate(result);
}
return result;
} else {
int r = negateexit(0);
negateexit(r);
return r;
}
}