blob: bd3642866691b341cb08d6c75f1069a879b2526a (
plain)
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
|
@load "fork"
BEGIN {
# avoid instantiating PROCINFO prior to the fork
switch (pid = fork()) {
case -1:
printf "Error: fork failed with ERRNO %s\n", ERRNO
exit 1
case 0:
# child
fn = ("fork.tmp." PROCINFO["pid"])
printf "pid %s ppid %s\n", PROCINFO["pid"], PROCINFO["ppid"] > fn
exit 0
default:
# parent
erc = 1
fn = ("fork.tmp." pid)
if ((rc = wait()) < 0)
printf "Error: wait failed with ERRNO %s\n", ERRNO
else if (rc != pid)
printf "Error: wait returned %s instead of child pid %s\n", rc, pid
else if ((getline x < fn) != 1)
printf "Error: getline failed on temp file %s\n", fn
else {
expected = ("pid " pid " ppid " PROCINFO["pid"])
if (x != expected)
printf "Error: child data (%s) != expected (%s)\n", x, expected
else if ((rc = system("rm " fn)) != 0)
printf "Error removing temp file %s with ERRNO %s\n", fn, ERRNO
else
erc = 0
}
exit erc
}
}
|