* solaris_threads.c (GC_get_orig_stack_size): Remove the annoying 'Large stack
limit' warning.
svn path=/trunk/mono/; revision=142660
+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.
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;