From: Zoltan Varga Date: Fri, 25 Sep 2009 21:39:38 +0000 (+0000) Subject: 2009-09-25 Zoltan Varga X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c112412fea7849ad1375ff46c4ac6029c2847d87;p=gc 2009-09-25 Zoltan Varga * solaris_threads.c (GC_get_orig_stack_size): Remove the annoying 'Large stack limit' warning. svn path=/trunk/mono/; revision=142660 --- diff --git a/ChangeLog b/ChangeLog index 1d797571..a30d4a33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,18 @@ +2009-09-25 Zoltan Varga + + * solaris_threads.c (GC_get_orig_stack_size): Remove the annoying 'Large stack + limit' warning. + 2009-07-20 Geoff Norton * darwin_stop_world.c: Fix the x86 version guards to use Apple's properly defined macros. 2009-07-02 jonas echterhoff - - * 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. diff --git a/solaris_threads.c b/solaris_threads.c index e6e0ea25..f0ae894e 100644 --- a/solaris_threads.c +++ b/solaris_threads.c @@ -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;