singrdk/base/Kernel/Singularity/ProcessState.cs

25 lines
463 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: Process.cs
//
// Note:
//
namespace System.Threading
{
public enum ProcessState
{
Unstarted,
Running,
Suspending,
SuspendingRecursive,
Suspended,
Stopping,
Stopped,
}
}