| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Threading.Mutex.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public sealed class Mutex : WaitHandle
- {
- public Mutex() {
- // FIXME
- }
- public Mutex(bool initiallyOwned) {
- // FIXME
- }
- public Mutex(bool initiallyOwned, string name) {
- // FIXME
- }
- public Mutex(bool initiallyOwned, string name, out bool gotOwnership) {
- // FIXME
- gotOwnership=false;
- }
- }
- }
|