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=78241

--- shadow/78241        2006-06-14 13:00:51.000000000 -0400
+++ shadow/78241.tmp.9272       2006-06-16 19:17:00.000000000 -0400
@@ -796,6 +796,45 @@
 ------- Additional Comments From [EMAIL PROTECTED]  2006-06-14 13:00 -------
 Can you retest the linuxthreads part please?
 
 I've had to reinstall my main machine and can't test linuxthreads any
 more, but another machine (which showed different symptoms) now works
 fine following r61705.
+
+------- Additional Comments From [EMAIL PROTECTED]  2006-06-16 19:16 -------
+I still get the warnings on the linuxthreads machine:
+
+** (null.exe:10789): WARNING **: _wapi_thread_abandon_mutexes: error
+looking up thread handle 0x408
+
+** (null.exe:10789): WARNING **: thread_set_termination_details: error
+looking up thread handle 0x408
+
+using these tests:
+
+
+//
+// null.cs
+//
+class T { static void Main () { System.Environment.Exit (1); } }
+
+
+//
+// test.cs
+//
+using System;
+using System.Diagnostics;
+
+class T
+{
+        static void Main ()
+        {
+                for (int i = 0; i < 5000; i++) {
+                        Process p = Process.Start ("mono", "null.exe");
+                        p.WaitForExit ();
+                        p.Close ();
+                }
+                Console.WriteLine ("ready");
+                Console.ReadLine ();
+        }
+}
+
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to