aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/SmartThreadPool/SLExt.cs
blob: fafff19bbe48d8a2a267c469b983b521c33bd500 (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