OpenSimMirror/ThirdParty/SmartThreadPool/SLExt.cs

17 lines
213 B
C#

#if _SILVERLIGHT
using System.Threading;
namespace Amib.Threading
{
public enum ThreadPriority
{
Lowest,
BelowNormal,
Normal,
AboveNormal,
Highest,
}
}
#endif