
Ram
New User
Oct 17, 2006, 12:38 AM
Post #1 of 3
(1970 views)
|
|
"Bizarre SvTYPE [96]" error occured when creating the fork
|
Can't Post
|
|
Hi, When i executed this piece of code on windows the following error " Bizarre SvTYPE [96] " is occured. if (!defined($child_pid = fork())) { die "cannot fork: $!"; } elsif ($child_pid) { print "i am parent\n"; print "my child_id ", $child_pid, "\n"; } else{ print "i am child\n"; } Please let me know the solution. thanks Ram
|