From efd01d959af41a23d8c6c4a0f95dce368f237bda Mon Sep 17 00:00:00 2001 From: John van Groningen Date: Tue, 29 Nov 2011 12:30:38 +0000 Subject: [PATCH] increase default heap size to 2 MB and default stack size to 512 KB --- Config/IDEPrefs | 4 ++-- Pm/PmTypes.icl | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Config/IDEPrefs b/Config/IDEPrefs index d6debc5..5ecf161 100644 --- a/Config/IDEPrefs +++ b/Config/IDEPrefs @@ -104,8 +104,8 @@ LnkOp GenerateDLL: False ExportedNames: AppOp - HeapSize: 409600 - StackSize: 102400 + HeapSize: 2097152 + StackSize: 512000 ExtraMemory: 81920 IntialHeapSize: 204800 HeapSizeMultiplier: 4096 diff --git a/Pm/PmTypes.icl b/Pm/PmTypes.icl index e857f47..70c54f7 100644 --- a/Pm/PmTypes.icl +++ b/Pm/PmTypes.icl @@ -320,11 +320,11 @@ DefCodeGenOptions = DefApplicationOptions :: ApplicationOptions; DefApplicationOptions = - { hs = 409600 - , ss = 102400 - , em = 81920 - , heap_size_multiple = 4096/*16*256*/ - , initial_heap_size = 204800 + { hs = 2<<20 + , ss = 500<<10 + , em = 8<<10 + , heap_size_multiple = 16<<8 + , initial_heap_size = 200<<10 , set = False , sgc = False , pss = False -- GitLab