Difference between revisions of "Pipe"
From Computer History Wiki
(not a general IPC mechanism) |
(→External link: +Advice from Doug McIlroy) |
||
Line 2: | Line 2: | ||
{{stub}} | {{stub}} | ||
+ | |||
+ | ==External link== | ||
+ | |||
+ | * [https://www.bell-labs.com/usr/dmr/www/mdmpipe.html Advice from Doug McIlroy] - the path to pipes | ||
[[Category: OS Basics]] | [[Category: OS Basics]] |
Latest revision as of 16:47, 29 June 2023
A pipe is a reliable byte stream between processes in the UNIX operating system. They are not a general inter-process communication mechanism; a pipe between two processes must have been set up by a common ancestor of the two, before any child processes which are to use it are created.
External link
- Advice from Doug McIlroy - the path to pipes