aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/SmartThreadPool/SLExt.cs
blob: 23a60bcb90c9bd49105620a56278c0e5918a9409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if _SILVERLIGHT

using System.Threading;

namespace Amib.Threading
{
    public enum ThreadPriority
    {
        Lowest,
        BelowNormal,
        Normal,
        AboveNormal,
        Highest,
    }
}
#endif