* 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

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