Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2006-04-27 20:38:21 +0400
committerCorinna Vinschen <corinna@vinschen.de>2006-04-27 20:38:21 +0400
commit523423ee377457db64950dad2fdcd96a4e43c17c (patch)
tree244d38f516160d12f65d1db568ee4e1e59b3bbe0 /winsup/cygwin/pipe.cc
parent564d770d9a8951bb488f63f355812dbeef41f1e6 (diff)
* pipe.cc (DEFAULT_PIPEBUFSIZE): Raise to 64K.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r--winsup/cygwin/pipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc
index a01a2dc39..e6e9c7d0c 100644
--- a/winsup/cygwin/pipe.cc
+++ b/winsup/cygwin/pipe.cc
@@ -494,7 +494,7 @@ fhandler_pipe::ioctl (unsigned int cmd, void *p)
return 0;
}
-#define DEFAULT_PIPEBUFSIZE (4 * PIPE_BUF)
+#define DEFAULT_PIPEBUFSIZE (16 * PIPE_BUF)
extern "C" int
pipe (int filedes[2])