forked from marcospohn/xv6-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforktest.c
executable file
·63 lines (49 loc) · 840 Bytes
/
forktest.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
// Test that fork fails gracefully.
// Tiny executable so that the limit can be filling the proc table.
#include "types.h"
#include "stat.h"
#include "user.h"
#define N 1000
#include "spinlock.h"
struct spinlock lock;
void printf(int fd, const char *s, ...)
{
write(fd, s, strlen(s));
}
void forktest(void)
{
int n, pid;
printf(1, "fork test\n");
for (n = 0; n < N; n++)
{
pid = fork(50);
if (pid < 0)
break;
if (pid == 0)
exit();
}
if (n == N)
{
printf(1, "fork claimed to work N times!\n", N);
exit();
}
for (; n > 0; n--)
{
if (wait() < 0)
{
printf(1, "wait stopped early\n");
exit();
}
}
if (wait() != -1)
{
printf(1, "wait got too many\n");
exit();
}
printf(1, "fork test OK\n");
}
int main(void)
{
forktest();
exit();
}