aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs
diff options
context:
space:
mode:
authorRobert Adams2013-05-01 12:08:12 -0700
committerRobert Adams2013-05-01 12:08:12 -0700
commitfca4e4ec7c044921ba602862c5a42900f819015a (patch)
treef3a1e0b09b7a454009437dd9b1015891a85eadb8 /ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs
parentBulletSim: improvements to LinksetCompound and PrimDisplaced. Not all working... (diff)
parentAdd in-code exaplanation for the change in cancellation signalling in STP 2.2... (diff)
downloadopensim-SC_OLD-fca4e4ec7c044921ba602862c5a42900f819015a.zip
opensim-SC_OLD-fca4e4ec7c044921ba602862c5a42900f819015a.tar.gz
opensim-SC_OLD-fca4e4ec7c044921ba602862c5a42900f819015a.tar.bz2
opensim-SC_OLD-fca4e4ec7c044921ba602862c5a42900f819015a.tar.xz
Merge branch 'master' into bulletsim4
Diffstat (limited to 'ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs')
-rw-r--r--ThirdParty/SmartThreadPool/CanceledWorkItemsGroup.cs14
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 @@
1namespace 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