Removed auto-generated comments.
[mono.git] / mcs / class / corlib / System.Threading / ThreadState.cs
1 // ThreadState.cs
2 //
3 // This code was automatically generated from
4 // ECMA CLI XML Library Specification.
5 // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
6 // Created: Wed, 5 Sep 2001 06:30:30 UTC
7 // Source file: AllTypes.xml
8 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Threading {
14
15
16         /// <summary>
17         /// </summary>
18         [Flags]
19         public enum ThreadState {
20
21                 /// <summary>
22                 /// </summary>
23                 Running = 0x00000000,
24
25                 /// <summary>
26                 /// </summary>
27                 Background = 0x00000004,
28
29                 /// <summary>
30                 /// </summary>
31                 Unstarted = 0x00000008,
32
33                 /// <summary>
34                 /// </summary>
35                 Stopped = 0x00000010,
36
37                 /// <summary>
38                 /// </summary>
39                 WaitSleepJoin = 0x00000020,
40
41                 /// <summary>
42                 /// </summary>
43                 AbortRequested = 0x00000080,
44
45                 /// <summary>
46                 /// </summary>
47                 Aborted = 0x00000100,
48         } // ThreadState
49
50 } // System.Threading