Mail Archives: djgpp/1996/10/24/08:12:57
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.
- Raw text -