[svn] r5876: nemerle/trunk/ncc/main.n

malekith svnadmin at nemerle.org
Thu Nov 3 19:32:23 CET 2005


Log:
Increase stack to 64M on x64 (I wonder why such a big stack is required, but it seems to...).

Author: malekith
Date: Thu Nov  3 19:32:22 2005
New Revision: 5876

Modified:
   nemerle/trunk/ncc/main.n

Modified: nemerle/trunk/ncc/main.n
==============================================================================
--- nemerle/trunk/ncc/main.n	(original)
+++ nemerle/trunk/ncc/main.n	Thu Nov  3 19:32:22 2005
@@ -55,7 +55,7 @@
     public Main () : void
     {
       if (needs_bigger_stack ()) {
-        def thread = System.Threading.Thread (main_with_catching, 0x200000);
+        def thread = System.Threading.Thread (main_with_catching, 64 * 1024 * 1024);
         thread.Start ();
         thread.Join ();
       } else



More information about the svn mailing list