[Mono-bugs] [Bug 74680][Maj] Changed - Creating mutex on new I/O layer returns wrong status
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Wed, 20 Apr 2005 20:50:54 -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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=74680
--- shadow/74680 2005-04-20 20:37:02.000000000 -0400
+++ shadow/74680.tmp.15512 2005-04-20 20:50:53.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 74680
Product: Mono: Class Libraries
Version: 1.1
OS: SLES 9
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Major
Component: System
AssignedTo: mono-bugs@ximian.com
ReportedBy: mlasky@novell.com
QAContact: mono-bugs@ximian.com
@@ -39,6 +39,26 @@
This is in the new I/O layer. Not the wapi stuff.
------- Additional Comments From mlasky@novell.com 2005-04-20 20:32 -------
Created an attachment (id=14987)
File that contains test application
+
+------- Additional Comments From bmaurer@users.sf.net 2005-04-20 20:50 -------
+Works for me on svn.
+
+In the future, for such a short test case it's much easier to attach
+it as a .cs file, or even better, make it really short and do it inline:
+
+using System;
+using System.Threading;
+
+public class Test {
+ static void Main (string [] args)
+ {
+ bool created;
+ Mutex x = new Mutex (true, args [0], out created);
+ Console.WriteLine ("created {0}", created);
+ }
+}
+
+does the same thing.