Re: interrupted system calls

2002-10-28 Thread Malcolm Wallace
Alastair Reid [EMAIL PROTECTED] writes: It sounds a little like a problem I had where trap 26 (I think this is a timer signal) was interrupting the subprocess. Nowadays I use this function: my_system :: String - IO ExitCode my_system xs = do -- putStrLn xs -- for debugging

RE: interrupted system calls

2002-10-28 Thread Simon Marlow
Does anyone know what might be causing the following error from a program that uses System.system? Fail: interrupted Action: system Reason: Interrupted system call The shell command given to System.system runs and terminates with a non-zero exit code (actually 8). I

interrupted system calls

2002-10-24 Thread Malcolm Wallace
Does anyone know what might be causing the following error from a program that uses System.system? Fail: interrupted Action: system Reason: Interrupted system call The shell command given to System.system runs and terminates with a non-zero exit code (actually 8). I expected to bind

Re: interrupted system calls

2002-10-24 Thread Alastair Reid
Malcolm: Does anyone know what might be causing the following error from a program that uses System.system? Fail: interrupted Action: system Reason: Interrupted system call The shell command given to System.system runs and terminates with a non-zero exit code (actually 8). I expected