[svn] r6169: nemerle/trunk/ncc/main.n
nazgul
svnadmin at nemerle.org
Mon Apr 3 17:44:59 CEST 2006
Log:
Decrease default size of stack used on MS.NET
Author: nazgul
Date: Mon Apr 3 17:44:58 2006
New Revision: 6169
Modified:
nemerle/trunk/ncc/main.n
Modified: nemerle/trunk/ncc/main.n
==============================================================================
--- nemerle/trunk/ncc/main.n (original)
+++ nemerle/trunk/ncc/main.n Mon Apr 3 17:44:58 2006
@@ -59,7 +59,7 @@
parse_command_line ();
if (stack_kilos != 0 || needs_bigger_stack ()) {
when (stack_kilos == 0)
- stack_kilos = 16 * 1024;
+ stack_kilos = 12 * 1024;
def thread = System.Threading.Thread (main_with_catching, stack_kilos * 1024);
thread.Start ();
thread.Join ();
More information about the svn
mailing list