[Mono-bugs] [Bug 623477] Different behavior on Thread(ThreadEntryPoint, maxStackSize) on .net and mono
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Jul 20 01:38:37 EDT 2010
http://bugzilla.novell.com/show_bug.cgi?id=623477
http://bugzilla.novell.com/show_bug.cgi?id=623477#c3
--- Comment #3 from Torello Querci <tquerci at gmail.com> 2010-07-20 05:38:36 UTC ---
Ops, sorry.
There is two check so the path is this one:
Index: class/corlib/System.Threading/Thread.cs
===================================================================
--- class/corlib/System.Threading/Thread.cs (revisione 159957)
+++ class/corlib/System.Threading/Thread.cs (copia locale)
@@ -976,8 +976,8 @@
{
if (start == null)
throw new ArgumentNullException ("start");
- if (maxStackSize < 131072)
- throw new ArgumentException ("< 128 kb", "maxStackSize");
+ if (maxStackSize < 0)
+ throw new ArgumentException ("< 0 kb", "maxStackSize");
threadstart = start;
Internal.stack_size = maxStackSize;
@@ -995,8 +995,8 @@
{
if (start == null)
throw new ArgumentNullException ("start");
- if (maxStackSize < 131072)
- throw new ArgumentException ("< 128 kb", "maxStackSize");
+ if (maxStackSize < 0)
+ throw new ArgumentException ("< 0 kb", "maxStackSize");
threadstart = start;
Internal.stack_size = maxStackSize;
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list