blob: 55696fd98f20f09db2a5e85cd74f89b1917049c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!./perl
# $Header: fork.t,v 4.0 91/03/20 01:52:43 lwall Locked $
$| = 1;
print "1..2\n";
if ($cid = fork) {
sleep 2;
if ($result = (kill 9, $cid)) {print "ok 2\n";} else {print "not ok 2 $result\n";}
}
else {
$| = 1;
print "ok 1\n";
sleep 10;
}
|