Increase default pipe buffer size to 64 KiB.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-04-30 16:16:43 +02:00
parent 152d768112
commit feea0786fc
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ bool PipeEndpoint::Connect(PipeEndpoint* destination)
{
assert(!channel);
assert(!destination->channel);
const size_t BUFFER_SIZE = 4096;
const size_t BUFFER_SIZE = 64 * 1024;
size_t size = BUFFER_SIZE;
uint8_t* buffer = new uint8_t[size];
if ( !buffer )