Browse Source

Increase Unix IPC buffer to 1 megabyte to support larger messages

Josh Engebretson 9 years ago
parent
commit
d6a478bcbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Atomic/IPC/IPCUnix.h

+ 1 - 1
Source/Atomic/IPC/IPCUnix.h

@@ -60,7 +60,7 @@ private:
 
 class PipeTransport : public PipeUnix {
 public:
-    static const size_t kBufferSz = 4096;
+    static const size_t kBufferSz = 1024 * 1024;
 
     bool Send(const void* buf, size_t sz) {
         return Write(buf, sz);