Re: sizeof PIPE_BUF
[email protected] (Paul Jarc)
| Newsgroups | gmane.linux.lib.dietlibc |
|---|---|
| Organization | What did you have in mind? A short, blunt, human pyramid? |
| Message-ID | <[email protected]> |
Nikola Vladov <[email protected]> wrote: > How big is actally PIPE_BUF? Note that the PIPE_BUF macro is not meant to indicate the size of the kernel's pipe buffer. Check the SUS description of write() for the details of what PIPE_BUF means. The buffer's size must be at least PIPE_BUF to satisfy those requirements, but it may be larger. paul