ThreadWaitReason.cs 463 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Diagnostics.ThreadWaitReason.cs
  3. //
  4. // Authors:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Diagnostics {
  10. [Serializable]
  11. public enum ThreadWaitReason {
  12. EventPairHigh=7,
  13. EventPairLow=8,
  14. ExecutionDelay=4,
  15. Executive=0,
  16. FreePage=1,
  17. LpcReceive=9,
  18. LpcReply=10,
  19. PageIn=2,
  20. PageOut=12,
  21. Suspended=5,
  22. SystemAllocation=3,
  23. Unknown=13,
  24. UserRequest=6,
  25. VirtualMemory=11,
  26. }
  27. }