Mutex.cs 534 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.Threading.Mutex.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Threading
  10. {
  11. public sealed class Mutex : WaitHandle
  12. {
  13. [MonoTODO]
  14. public Mutex() {
  15. // FIXME
  16. }
  17. [MonoTODO]
  18. public Mutex(bool initiallyOwned) {
  19. // FIXME
  20. }
  21. [MonoTODO]
  22. public Mutex(bool initiallyOwned, string name) {
  23. // FIXME
  24. }
  25. [MonoTODO]
  26. public Mutex(bool initiallyOwned, string name, out bool gotOwnership) {
  27. // FIXME
  28. gotOwnership=false;
  29. }
  30. }
  31. }