2009-09-25 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Fri, 25 Sep 2009 21:39:38 +0000 (21:39 -0000)
committerZoltan Varga <vargaz@gmail.com>
Fri, 25 Sep 2009 21:39:38 +0000 (21:39 -0000)
* solaris_threads.c (GC_get_orig_stack_size): Remove the annoying 'Large stack
limit' warning.

svn path=/trunk/mono/; revision=142660

libgc/ChangeLog
libgc/solaris_threads.c

index 1d797571d534c8c0770e213571843b9f4e3fbd5b..a30d4a33ae935cce32aa8a598ee99d5fd0e056ed 100644 (file)
@@ -1,13 +1,18 @@
+2009-09-25  Zoltan Varga  <vargaz@gmail.com>
+
+       * solaris_threads.c (GC_get_orig_stack_size): Remove the annoying 'Large stack
+       limit' warning.
+
 2009-07-20  Geoff Norton  <gnorton@novell.com>
 
        * darwin_stop_world.c: Fix the x86 version guards to use Apple's
        properly defined macros.
 
 2009-07-02  jonas echterhoff <jonas@unity3d.com>
-       
-       * darwin_stop_world.c: make debugger code compile on 
+
+       * darwin_stop_world.c: make debugger code compile on
        OS X.
-       
+
        * pthread_support.c: give mach ports to the debugger instead of pthreads,
        as those can be iterated over from another executable.
 
index e6e0ea259c17cdb842657cb8c0927ae8adc4a078..f0ae894eebae7fe9838830a715bc5dd403cf0272 100644 (file)
@@ -670,7 +670,7 @@ word GC_get_orig_stack_size() {
     result = (word)rl.rlim_cur & ~(HBLKSIZE-1);
     if (result > MAX_ORIG_STACK_SIZE) {
        if (!warned) {
-           WARN("Large stack limit(%ld): only scanning 8 MB\n", result);
+           /* WARN("Large stack limit(%ld): only scanning 8 MB\n", result); */
            warned = 1;
        }
        result = MAX_ORIG_STACK_SIZE;