singrdk/base/Libraries/Singularity.V1/Threads/ThreadState.cs

27 lines
628 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity - Singularity ABI
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: ThreadState.cs
//
// Note:
//
using System;
namespace Microsoft.Singularity.V1.Threads
{
//| <include path='docs/doc[@for="ThreadState"]/*' />
[Flags]
public enum ThreadState
{
Unstarted = 0x00,
Running = 0x01,
Blocked = 0x02,
Suspended = 0x04,
Stopped = 0x08,
}
}