[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: SIGTTOU handling
From: |
Derek Fawcus |
Subject: |
Re: SIGTTOU handling |
Date: |
Mon, 12 Nov 2007 20:03:38 +0000 |
On Sun, Nov 11, 2007 at 09:56:11PM -0800, cerise@armory.com wrote:
> Can someone provide a hint to this end? My deepest
> thanks for your time and any advice you might be
> able to provide.
I get exactly that behaviour with a program I have been working on.
I traced it to the fact that I ran bash with stderr not attached to a tty.
I could 'fix' it by either duping stderr to stdout, or patching bash to
not worry about stderr not being a terminal. Since I actually wanted
to seperate the stdout and stderr output of the shell and child processes,
I ended up patching bash.
I don't know if this is your issue.
DF