in reply to Re^2: IPC problem
in thread IPC problem

And maybe it's the problem of my scripts "external.pl" and "external2.pl" here they are: external.pl:
#!/usr/bin/perl my $i =0; while($i<=1000000){ if($i == 800){ exit 2; } $i++; }
external2.pl:
#!/usr/bin/perl my $i =0; while($i<=1000000){ if($i == 900){ exit 1; } $i++; }
Or I don't know what can cause these problems then...