Mailing List Archives
Authenticated access
|
|
|
[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]
- Date: Thu, 08 Mar 2007 10:51:29 -0600
- From: Dimitri Maziuk <dmaziuk@xxxxxxxxxxxxx>
- Subject: 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