in reply to Re^2: IPC problem
in thread IPC problem
external2.pl:#!/usr/bin/perl my $i =0; while($i<=1000000){ if($i == 800){ exit 2; } $i++; }
Or I don't know what can cause these problems then...#!/usr/bin/perl my $i =0; while($i<=1000000){ if($i == 900){ exit 1; } $i++; }
|
|---|