[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Vanilla job crashing segmentation fault due to ioctl [Sec=Unclassified]



Troy Robertson wrote:

> Job also runs correctly when executed directly on the same Linux
> machine.  

> strace shows:
> 
> ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfe20890) = -1 ENOTTY
> (Inappropriate ioctl for device)

It's hard to tell from that one line, but ENOTTY often means the job
wants stdout/stderr and doesn't have it (it would if you run it from
console). Adding ">/dev/null 2>&1" might fix it.

Dima