diff options
author | Melanie | 2013-05-01 21:39:49 +0100 |
---|---|---|
committer | Melanie | 2013-05-01 21:39:49 +0100 |
commit | 8c5445b774c602a13a7b49db1630b5f9fb9ff438 (patch) | |
tree | 6e829d2903b589c0c703793fb804632ea2324d62 /ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-8c5445b774c602a13a7b49db1630b5f9fb9ff438.zip opensim-SC-8c5445b774c602a13a7b49db1630b5f9fb9ff438.tar.gz opensim-SC-8c5445b774c602a13a7b49db1630b5f9fb9ff438.tar.bz2 opensim-SC-8c5445b774c602a13a7b49db1630b5f9fb9ff438.tar.xz |
Merge branch 'master' into careminster
Conflicts:
ThirdParty/SmartThreadPool/SmartThreadPool.cs
Diffstat (limited to 'ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs')
-rw-r--r-- | ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs b/ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs new file mode 100644 index 0000000..4a2a3e7 --- /dev/null +++ b/ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | namespace Amib.Threading.Internal | ||
2 | { | ||
3 | internal class CanceledWorkItemsGroup | ||
4 | { | ||
5 | public readonly static CanceledWorkItemsGroup NotCanceledWorkItemsGroup = new CanceledWorkItemsGroup(); | ||
6 | |||
7 | public CanceledWorkItemsGroup() | ||
8 | { | ||
9 | IsCanceled = false; | ||
10 | } | ||
11 | |||
12 | public bool IsCanceled { get; set; } | ||
13 | } | ||
14 | } \ No newline at end of file | ||