From 20d45ac5f965c5a6abd3f2c1aa44a6baa76e87e4 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Tue, 26 Jan 2016 12:42:06 -0600 Subject: [PATCH] bump memory limit (per process? or per "node?") from 2047 => 4095 --- .../library/sharedMemoryManager/src/shared/MemoryManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/shared/library/sharedMemoryManager/src/shared/MemoryManager.cpp b/engine/shared/library/sharedMemoryManager/src/shared/MemoryManager.cpp index b11bb26b..282e9480 100755 --- a/engine/shared/library/sharedMemoryManager/src/shared/MemoryManager.cpp +++ b/engine/shared/library/sharedMemoryManager/src/shared/MemoryManager.cpp @@ -256,7 +256,7 @@ namespace MemoryManagerNamespace bool ms_installed; bool ms_limitSet; bool ms_hardLimit; - int ms_limitMegabytes = 2047; + int ms_limitMegabytes = 4195; SystemAllocation * ms_firstSystemAllocation; int ms_numberOfSystemAllocations; int ms_systemMemoryAllocatedMegabytes;