Commit d0b4a24c authored by Geoff Simmons's avatar Geoff Simmons

Default bufsz if PIPE_BUF is not #defined is the min permitted by POSIX.

parent 91dcc434
...@@ -58,7 +58,7 @@ extern char **environ; ...@@ -58,7 +58,7 @@ extern char **environ;
#ifdef PIPE_BUF #ifdef PIPE_BUF
#define DEFAULT_BUFSZ ((size_t)PIPE_BUF) #define DEFAULT_BUFSZ ((size_t)PIPE_BUF)
#else #else
#define DEFAULT_BUFSZ ((size_t)4096) #define DEFAULT_BUFSZ ((size_t)512)
#endif #endif
struct VPFX(pipe_vdp) { struct VPFX(pipe_vdp) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment