* pipe.cc (DEFAULT_PIPEBUFSIZE): Raise to 64K.

This commit is contained in:
Corinna Vinschen 2006-04-27 16:38:21 +00:00
parent 564d770d9a
commit 523423ee37
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-04-27 Corinna Vinschen <corinna@vinschen.de>
* pipe.cc (DEFAULT_PIPEBUFSIZE): Raise to 64K.
2006-04-26 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_base): Change fstat_helper prototype

View File

@ -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])