home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
ntcode
/
ntperlb
/
t
/
op
/
fork.nt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-05-19
|
292 b
|
18 lines
#!./perl
# $Header: fork.t,v 4.0 91/03/20 01:52:43 lwall Locked $
$| = 1;
print "1..0\n";
exit;
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;
}