Date: Sun, 19 Jul 1998 14:16:18 +0300 (IDT) From: Eli Zaretskii To: Tanes Sriviroolchai cc: djgpp AT delorie DOT com Subject: Re: SIGCHLD / SIGCLD In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 17 Jul 1998, Tanes Sriviroolchai wrote: > I'd like to ask a question about signal in DJGPP 2.01. Does it support > for SIGCHLD or SIGCLD or if there is any way to simulate it? Thank you. DJGPP doesn't support (or even define) SIGCHLD and SIGCLD. I'm not sure why would you need to simulate these. AFAIK, they are used to signal that a child subprocess that was run asynchronously has exited. Since in DJGPP all subprocesses are synchronous, you shouldn't need this facility. Maybe if you explain the setup where you need these signals, you could get more meaningful replies.