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