Mutex.cs 482 B

1234567891011121314151617181920212223242526272829303132
  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. public Mutex() {
  14. // FIXME
  15. }
  16. public Mutex(bool initiallyOwned) {
  17. // FIXME
  18. }
  19. public Mutex(bool initiallyOwned, string name) {
  20. // FIXME
  21. }
  22. public Mutex(bool initiallyOwned, string name, out bool gotOwnership) {
  23. // FIXME
  24. gotOwnership=false;
  25. }
  26. }
  27. }