Date: Thu, 24 Oct 1996 13:44:21 +0200 (IST) From: Eli Zaretskii To: Orlando Andico Cc: Juanjo Erauskin , djgpp AT delorie DOT com Subject: Re: Problem with popen() In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 24 Oct 1996, Orlando Andico wrote: > are pipes SUPPORTED under DJGPP? how can you do this when there's no > multitasking? Why don't you wonder how does COMMAND.COM allow pipes? The popen/pclose paradigm is supported by redirecting the input or output of the child to a file. Since pclose on Unix waits until the child exits, you don't need multitasking to implement it. The `pipe' function is not supported because it *does* require multitasking.