Added support for Silverlight and Mono (And more)

Also added:
* Join, Choice, and Pipe to SmartThreadPool.
* Local performance counters (for Mono, Silverlight, and WindowsCE)
This commit is contained in:
Ami Bar
2009-12-19 17:36:39 +02:00
parent d2c14da5ad
commit 760bc5d1a9
61 changed files with 2960 additions and 969 deletions
+2 -4
View File
@@ -1,4 +1,3 @@
using System;
using System.Threading;
using NUnit.Framework;
@@ -73,11 +72,10 @@ namespace SmartThreadPoolTests
stp.Start();
Assert.IsTrue(wig.WaitForIdle(200));
Assert.IsTrue(stp.WaitForIdle(0));
Assert.IsTrue(wig.WaitForIdle(5000), "WIG is not idle");
Assert.IsTrue(stp.WaitForIdle(5000), "STP is not idle");
}
[Test]
public void TwoWIGsStartSuspended()
{