[Mono-bugs] [Bug 61708][Wis] New - ** ERROR **: file timed-thread.c: line 69

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 18 Jul 2004 16:02:58 -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 jeffrey.dillon@sun.com.

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

--- shadow/61708	2004-07-18 16:02:58.000000000 -0400
+++ shadow/61708.tmp.21375	2004-07-18 16:02:58.000000000 -0400
@@ -0,0 +1,48 @@
+Bug#: 61708
+Product: Mono: Runtime
+Version: unspecified
+OS: 
+OS Details: 10.3.4
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: jeffrey.dillon@sun.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: ** ERROR **: file timed-thread.c: line 69
+
+Please fill in this template when reporting a bug, unless you know what you are doing.
+Description of Problem:
+
+
+Steps to reproduce the problem:
+1. Compile the included small code.
+2. Run the compiled exe multiple times. 
+3. On my system 1 out of about 4 runs causes the error:
+
+** ERROR **: file timed-thread.c: line 69 (_wapi_timed_thread_exit): assertion failed: (thr_ret == 
+0)
+aborting...
+
+How often does this happen? 
+
+In 5 runs, it always seems to happen.
+
+Additional Information:
+
+using System;
+
+public class Test {
+
+  public static void Main(string[] args){
+        for (int x = 0; x < 10000; x++){
+                int y = x;
+                y++;
+        }
+  }
+}