Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=75925 --- shadow/75925 2005-08-28 17:51:33.000000000 -0400 +++ shadow/75925.tmp.25588 2005-08-28 17:59:30.000000000 -0400 @@ -1,14 +1,14 @@ Bug#: 75925 Product: Mono: Compilers Version: 1.1 -OS: +OS: unknown OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Major Component: C# AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- @@ -61,6 +61,30 @@ container, Mono.CSharp.Attributable kind) in <0x00029> Mono.CSharp.Method:Emit () in <0x00625> Mono.CSharp.TypeContainer:EmitType () in <0x00215> Mono.CSharp.RootContext:EmitCode () in <0x00bf0> Mono.CSharp.Driver:MainDriver (System.String[] args) in <0x0000f> Mono.CSharp.Driver:Main (System.String[] args) + +------- Additional Comments From [EMAIL PROTECTED] 2005-08-28 17:59 ------- +Simple test case: + +using System; +using System.Threading; + +class X { + + static void Main () + { + } + + void Z () + { + ThreadPool.QueueUserWorkItem (delegate { + Z (); + + ThreadPool.QueueUserWorkItem (delegate { + Z (); + }); + }); + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
