[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: Perl -system command



On Tue, Oct 10, 2000 at 02:04:25PM +0200, Sachin Shurpali (RBIN/DCA-NMP) wrote:
> 
> It generated Interrupted System Call  error message
> 

This typically happens when a process is sleeping in the kernel and
a signal gets delivered to it. 

In this case, I'm guessing the signal is SIGCHLD. You might want to
strace the process to confirm this.

	-Arun