Files
opensim/ThirdParty/SmartThreadPool/SLExt.cs
2013-05-01 23:00:46 +01:00

17 lines
213 B
C#

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