[Mono-bugs] [Bug 72738][Nor] Changed - Weird thread behavior

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 7 Apr 2005 02:28:42 -0400 (EDT)


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 gonzalo@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=72738

--- shadow/72738	2005-04-04 12:47:19.000000000 -0400
+++ shadow/72738.tmp.4607	2005-04-07 02:28:42.000000000 -0400
@@ -1,22 +1,22 @@
 Bug#: 72738
 Product: Mono: Class Libraries
 Version: 1.0
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: System
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: adam@negligible.co.uk               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
-Cc: 
+Cc: dick@ximian.com,gonzalo@ximian.com
 Summary: Weird thread behavior
 
 When launching a thread, the ThreadState of the new thread can be
 "Unstarted" within the new thread! e.g. This test case  normally prints 6-7
 lines of output on my computer.
 
@@ -48,6 +48,11 @@
 			Console.WriteLine ("MyLoop: Argh - thread is 'unstarted'");
 	}
 }
 
 ------- Additional Comments From sebastian.droege@gmx.de  2005-04-04 12:47 -------
 *** Bug 74350 has been marked as a duplicate of this bug. ***
+
+------- Additional Comments From gonzalo@ximian.com  2005-04-07 02:28 -------
+Dick? I see 2 options here, one moving the line that sets the thread
+state from after Start_internal to one line above. The other is
+setting the state in the runtime right before ResumeThread. Which one?