Penguin

Differences between current version and predecessor to the previous major change of EPIPE.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 3 Last edited on Wednesday, June 10, 2009 7:41:23 am by OzzNixon
Older page: version 2 Last edited on Sunday, February 23, 2003 2:56:56 am by PerryLorier Revert
@@ -1,5 +1,5 @@
 __Broken Pipe__ 
  
-A process tried to read or write to a pipe where the other end of the pipe no longer exists. 
+A process tried to read or write to a pipe where the other end of the pipe no longer exists. Every library function that returns this error code also generates a SIGPIPE signal; this signal terminates the program if not handled or blocked. Thus, your program will never actually see EPIPE unless it has handled or blocked SIGPIPE  
  
 See the discussion on [SIGPIPE].