Difference between revisions of "Pipe"

From Computer History Wiki
Jump to: navigation, search
(A start....)
 
m (External link: Update Bell Labs URLs (blast Nokia))
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
A '''pipe''' is a [[reliable byte stream]] between [[process]]es in the [[UNIX]] [[operating system]].
+
A '''pipe''' is a [[reliable byte stream]] between [[process]]es 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.
  
 
{{stub}}
 
{{stub}}
 +
 +
==External link==
 +
 +
* [https://www.nokia.com/bell-labs/about/dennis-m-ritchie/mdmpipe.html Advice from Doug McIlroy] - the path to pipes
 +
 +
[[Category: OS Basics]]

Latest revision as of 21:38, 30 June 2025

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