* pipe.cc (DEFAULT_PIPEBUFSIZE): Raise to 64K.
This commit is contained in:
parent
564d770d9a
commit
523423ee37
|
@ -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>
|
2006-04-26 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler.h (fhandler_base): Change fstat_helper prototype
|
* fhandler.h (fhandler_base): Change fstat_helper prototype
|
||||||
|
|
|
@ -494,7 +494,7 @@ fhandler_pipe::ioctl (unsigned int cmd, void *p)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DEFAULT_PIPEBUFSIZE (4 * PIPE_BUF)
|
#define DEFAULT_PIPEBUFSIZE (16 * PIPE_BUF)
|
||||||
|
|
||||||
extern "C" int
|
extern "C" int
|
||||||
pipe (int filedes[2])
|
pipe (int filedes[2])
|
||||||
|
|
Loading…
Reference in New Issue