From ff1caafd973bfd9f13b19c0cd271fb6ef4fe6e32 Mon Sep 17 00:00:00 2001 From: Geoff Norton Date: Tue, 25 Jan 2011 01:51:17 -0500 Subject: [PATCH] Add pfx to the mobile profile --- mcs/build/common/Consts.cs.in | 2 +- .../EnumerablePartitioner.cs | 2 +- .../System.Collections.Concurrent.Partitioners/ListPartitioner.cs | 2 +- .../UserRangePartitioner.cs | 2 +- .../corlib/System.Collections.Concurrent/ConcurrentDictionary.cs | 2 +- .../corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs | 2 +- mcs/class/corlib/System.Collections.Concurrent/ConcurrentQueue.cs | 2 +- mcs/class/corlib/System.Collections.Concurrent/ConcurrentStack.cs | 2 +- .../System.Collections.Concurrent/IProducerConsumerCollection.cs | 2 +- .../corlib/System.Collections.Concurrent/OrderablePartitioner.cs | 2 +- mcs/class/corlib/System.Collections.Concurrent/Partitioner.cs | 2 +- mcs/class/corlib/System.Collections.Concurrent/SplitOrderedList.cs | 2 +- mcs/class/corlib/System.Collections/IStructuralComparable.cs | 2 +- mcs/class/corlib/System.Collections/IStructuralEquatable.cs | 2 +- .../System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/CyclicDeque.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/Future.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/IScheduler.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/Parallel.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/ParallelLoopResult.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/ParallelLoopState.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/ParallelOptions.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/Scheduler.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/SchedulerProxy.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/SimpleConcurrentBag.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/Task.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskCanceledException.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskContinuationOptions.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskCreationOptions.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskFactory.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskScheduler.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskSchedulerException.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/TaskStatus.cs | 2 +- mcs/class/corlib/System.Threading.Tasks/ThreadWorker.cs | 2 +- .../corlib/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs | 4 ++-- mcs/class/corlib/System.Threading/AsyncFlowControl.cs | 2 +- mcs/class/corlib/System.Threading/CancellationToken.cs | 2 +- mcs/class/corlib/System.Threading/CancellationTokenRegistration.cs | 2 +- mcs/class/corlib/System.Threading/CancellationTokenSource.cs | 2 +- mcs/class/corlib/System.Threading/CountdownEvent.cs | 2 +- mcs/class/corlib/System.Threading/LazyInitializer.cs | 2 +- mcs/class/corlib/System.Threading/LazyThreadSafetyMode.cs | 2 +- mcs/class/corlib/System.Threading/LockRecursionException.cs | 2 +- mcs/class/corlib/System.Threading/ManualResetEventSlim.cs | 2 +- mcs/class/corlib/System.Threading/Monitor.cs | 2 +- mcs/class/corlib/System.Threading/SemaphoreSlim.cs | 2 +- mcs/class/corlib/System.Threading/SpinLock.cs | 2 +- mcs/class/corlib/System.Threading/SpinWait.cs | 2 +- mcs/class/corlib/System.Threading/Thread.cs | 2 +- mcs/class/corlib/System.Threading/ThreadLocal.cs | 2 +- mcs/class/corlib/System.Threading/WaitHandle.cs | 2 +- mcs/class/corlib/System.Threading/Watch.cs | 2 +- mcs/class/corlib/System/Action.cs | 2 +- mcs/class/corlib/System/AggregateException.cs | 2 +- mcs/class/corlib/System/Funcs.cs | 2 +- mcs/class/corlib/System/OperationCanceledException.cs | 4 ++-- mcs/class/corlib/System/Tuple.cs | 2 +- mcs/class/corlib/System/Tuples.cs | 2 +- 59 files changed, 61 insertions(+), 61 deletions(-) diff --git a/mcs/build/common/Consts.cs.in b/mcs/build/common/Consts.cs.in index 5adf52f4f8a..cde77fc621e 100644 --- a/mcs/build/common/Consts.cs.in +++ b/mcs/build/common/Consts.cs.in @@ -100,7 +100,7 @@ static class Consts public const string AssemblySystem_ServiceProcess = "System.ServiceProcess, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"; public const string AssemblySystem_Web = "System.Web, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"; public const string AssemblySystem_Windows_Forms = "System.Windows.Forms, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089"; -#if NET_4_0 +#if NET_4_0 || MOBILE public const string AssemblySystem_2_0 = "System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"; public const string AssemblySystemCore_3_5 = "System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"; public const string AssemblySystem_Core = "System.Core, Version=" + FxVersion + ", Culture=neutral, PublicKeyToken=b77a5c561934e089"; diff --git a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs index d236fee253c..3834a0b7efe 100644 --- a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs +++ b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/ListPartitioner.cs b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/ListPartitioner.cs index 79a54f57bfe..ee9c3e5b2eb 100644 --- a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/ListPartitioner.cs +++ b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/ListPartitioner.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs index 954324c6715..8d4a75f62ce 100644 --- a/mcs/class/corlib/System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs +++ b/mcs/class/corlib/System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs index 9ee890e82bb..97f16c660c2 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs index d9644a730e6..fd12335703d 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentQueue.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentQueue.cs index 2593381188c..1be5ccf2f02 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentQueue.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentQueue.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentStack.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentStack.cs index 920435b017b..2e059b684d2 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentStack.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentStack.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections.Concurrent/IProducerConsumerCollection.cs b/mcs/class/corlib/System.Collections.Concurrent/IProducerConsumerCollection.cs index 4f991e28974..853234c580d 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/IProducerConsumerCollection.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/IProducerConsumerCollection.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Collections.Concurrent/OrderablePartitioner.cs b/mcs/class/corlib/System.Collections.Concurrent/OrderablePartitioner.cs index b1368dd7571..4a0da432542 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/OrderablePartitioner.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/OrderablePartitioner.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Collections.Concurrent/Partitioner.cs b/mcs/class/corlib/System.Collections.Concurrent/Partitioner.cs index 92b5665712c..7bdd6c335c8 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/Partitioner.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/Partitioner.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Collections.Concurrent/SplitOrderedList.cs b/mcs/class/corlib/System.Collections.Concurrent/SplitOrderedList.cs index 8399ebeaea1..eff1f0cebe5 100644 --- a/mcs/class/corlib/System.Collections.Concurrent/SplitOrderedList.cs +++ b/mcs/class/corlib/System.Collections.Concurrent/SplitOrderedList.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 || INSIDE_SYSTEM_WEB +#if NET_4_0 || INSIDE_SYSTEM_WEB || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Collections/IStructuralComparable.cs b/mcs/class/corlib/System.Collections/IStructuralComparable.cs index f7695f9ac81..d78267b6682 100644 --- a/mcs/class/corlib/System.Collections/IStructuralComparable.cs +++ b/mcs/class/corlib/System.Collections/IStructuralComparable.cs @@ -26,7 +26,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if MOONLIGHT || NET_4_0 +#if MOONLIGHT || NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System.Collections/IStructuralEquatable.cs b/mcs/class/corlib/System.Collections/IStructuralEquatable.cs index a3d4ef5117a..a824da3104a 100644 --- a/mcs/class/corlib/System.Collections/IStructuralEquatable.cs +++ b/mcs/class/corlib/System.Collections/IStructuralEquatable.cs @@ -26,7 +26,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if MOONLIGHT || NET_4_0 +#if MOONLIGHT || NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs b/mcs/class/corlib/System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs index fcfe428592f..9881d0fdc14 100644 --- a/mcs/class/corlib/System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs +++ b/mcs/class/corlib/System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs @@ -26,7 +26,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_4_0 || MOONLIGHT +#if NET_4_0 || MOONLIGHT || MOBILE namespace System.Runtime.CompilerServices { diff --git a/mcs/class/corlib/System.Threading.Tasks/CyclicDeque.cs b/mcs/class/corlib/System.Threading.Tasks/CyclicDeque.cs index bd21edce641..6f72bfa7786 100644 --- a/mcs/class/corlib/System.Threading.Tasks/CyclicDeque.cs +++ b/mcs/class/corlib/System.Threading.Tasks/CyclicDeque.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Threading.Tasks/Future.cs b/mcs/class/corlib/System.Threading.Tasks/Future.cs index 75a2a7caf4e..3ab6a486925 100644 --- a/mcs/class/corlib/System.Threading.Tasks/Future.cs +++ b/mcs/class/corlib/System.Threading.Tasks/Future.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/IScheduler.cs b/mcs/class/corlib/System.Threading.Tasks/IScheduler.cs index 9a9aadd06c6..d4c78b43a7d 100644 --- a/mcs/class/corlib/System.Threading.Tasks/IScheduler.cs +++ b/mcs/class/corlib/System.Threading.Tasks/IScheduler.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Threading.Tasks/Parallel.cs b/mcs/class/corlib/System.Threading.Tasks/Parallel.cs index 5448dbc3457..7c4b2db37a0 100644 --- a/mcs/class/corlib/System.Threading.Tasks/Parallel.cs +++ b/mcs/class/corlib/System.Threading.Tasks/Parallel.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; using System.Collections.Concurrent; diff --git a/mcs/class/corlib/System.Threading.Tasks/ParallelLoopResult.cs b/mcs/class/corlib/System.Threading.Tasks/ParallelLoopResult.cs index b432ea5688c..87801f14701 100644 --- a/mcs/class/corlib/System.Threading.Tasks/ParallelLoopResult.cs +++ b/mcs/class/corlib/System.Threading.Tasks/ParallelLoopResult.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/ParallelLoopState.cs b/mcs/class/corlib/System.Threading.Tasks/ParallelLoopState.cs index e5606d5f115..fa53a801969 100644 --- a/mcs/class/corlib/System.Threading.Tasks/ParallelLoopState.cs +++ b/mcs/class/corlib/System.Threading.Tasks/ParallelLoopState.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading.Tasks/ParallelOptions.cs b/mcs/class/corlib/System.Threading.Tasks/ParallelOptions.cs index 6bc0b6bc1cb..ac9635cd080 100644 --- a/mcs/class/corlib/System.Threading.Tasks/ParallelOptions.cs +++ b/mcs/class/corlib/System.Threading.Tasks/ParallelOptions.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading.Tasks/Scheduler.cs b/mcs/class/corlib/System.Threading.Tasks/Scheduler.cs index b136d123d3f..1179d4928a5 100644 --- a/mcs/class/corlib/System.Threading.Tasks/Scheduler.cs +++ b/mcs/class/corlib/System.Threading.Tasks/Scheduler.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Concurrent; diff --git a/mcs/class/corlib/System.Threading.Tasks/SchedulerProxy.cs b/mcs/class/corlib/System.Threading.Tasks/SchedulerProxy.cs index afe7dc6ea0d..72235bca9af 100644 --- a/mcs/class/corlib/System.Threading.Tasks/SchedulerProxy.cs +++ b/mcs/class/corlib/System.Threading.Tasks/SchedulerProxy.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/SimpleConcurrentBag.cs b/mcs/class/corlib/System.Threading.Tasks/SimpleConcurrentBag.cs index 8309580b643..22a11e77289 100644 --- a/mcs/class/corlib/System.Threading.Tasks/SimpleConcurrentBag.cs +++ b/mcs/class/corlib/System.Threading.Tasks/SimpleConcurrentBag.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading.Tasks/Task.cs b/mcs/class/corlib/System.Threading.Tasks/Task.cs index e05cd9eccd7..a40f808ad4c 100644 --- a/mcs/class/corlib/System.Threading.Tasks/Task.cs +++ b/mcs/class/corlib/System.Threading.Tasks/Task.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskCanceledException.cs b/mcs/class/corlib/System.Threading.Tasks/TaskCanceledException.cs index 1fc5d1a7a1c..5253e544b51 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskCanceledException.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskCanceledException.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Runtime.Serialization; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs b/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs index ecb0bc59ca8..7ecc6a3d2e0 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskCompletionSource.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskContinuationOptions.cs b/mcs/class/corlib/System.Threading.Tasks/TaskContinuationOptions.cs index 0f0ea0d8bd6..bbc83bcb1ad 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskContinuationOptions.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskContinuationOptions.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskCreationOptions.cs b/mcs/class/corlib/System.Threading.Tasks/TaskCreationOptions.cs index d8d9c04dd33..cd4553d0d3d 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskCreationOptions.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskCreationOptions.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskFactory.cs b/mcs/class/corlib/System.Threading.Tasks/TaskFactory.cs index e079f1f2b74..a50f74edbbd 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskFactory.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskFactory.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskScheduler.cs b/mcs/class/corlib/System.Threading.Tasks/TaskScheduler.cs index b8620987fbd..0c473f7df7f 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskScheduler.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskScheduler.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskSchedulerException.cs b/mcs/class/corlib/System.Threading.Tasks/TaskSchedulerException.cs index ddcd63bbacc..1d4149c95c6 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskSchedulerException.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskSchedulerException.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Runtime.Serialization; diff --git a/mcs/class/corlib/System.Threading.Tasks/TaskStatus.cs b/mcs/class/corlib/System.Threading.Tasks/TaskStatus.cs index 853afad3736..7abcd641d77 100644 --- a/mcs/class/corlib/System.Threading.Tasks/TaskStatus.cs +++ b/mcs/class/corlib/System.Threading.Tasks/TaskStatus.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks diff --git a/mcs/class/corlib/System.Threading.Tasks/ThreadWorker.cs b/mcs/class/corlib/System.Threading.Tasks/ThreadWorker.cs index e0f8a16d269..c9ff883bcf6 100644 --- a/mcs/class/corlib/System.Threading.Tasks/ThreadWorker.cs +++ b/mcs/class/corlib/System.Threading.Tasks/ThreadWorker.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; using System.Collections.Concurrent; diff --git a/mcs/class/corlib/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs b/mcs/class/corlib/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs index aff0675517f..d3e36f39866 100644 --- a/mcs/class/corlib/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs +++ b/mcs/class/corlib/System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading.Tasks @@ -59,4 +59,4 @@ namespace System.Threading.Tasks } #endif -// \ No newline at end of file +// diff --git a/mcs/class/corlib/System.Threading/AsyncFlowControl.cs b/mcs/class/corlib/System.Threading/AsyncFlowControl.cs index cdd93735955..498afc2489e 100644 --- a/mcs/class/corlib/System.Threading/AsyncFlowControl.cs +++ b/mcs/class/corlib/System.Threading/AsyncFlowControl.cs @@ -65,7 +65,7 @@ namespace System.Threading { _t = null; } -#if NET_4_0 +#if NET_4_0 || MOBILE public void Dispose () #else void IDisposable.Dispose () diff --git a/mcs/class/corlib/System.Threading/CancellationToken.cs b/mcs/class/corlib/System.Threading/CancellationToken.cs index 8d97f78749d..16de2131ba5 100644 --- a/mcs/class/corlib/System.Threading/CancellationToken.cs +++ b/mcs/class/corlib/System.Threading/CancellationToken.cs @@ -27,7 +27,7 @@ using System; using System.Threading; -#if NET_4_0 +#if NET_4_0 || MOBILE namespace System.Threading { [System.Diagnostics.DebuggerDisplay ("IsCancellationRequested = {IsCancellationRequested}")] diff --git a/mcs/class/corlib/System.Threading/CancellationTokenRegistration.cs b/mcs/class/corlib/System.Threading/CancellationTokenRegistration.cs index bd8098ae6bf..96f298de0d0 100644 --- a/mcs/class/corlib/System.Threading/CancellationTokenRegistration.cs +++ b/mcs/class/corlib/System.Threading/CancellationTokenRegistration.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Threading; diff --git a/mcs/class/corlib/System.Threading/CancellationTokenSource.cs b/mcs/class/corlib/System.Threading/CancellationTokenSource.cs index 9981c5769fb..1d9411fb2c7 100644 --- a/mcs/class/corlib/System.Threading/CancellationTokenSource.cs +++ b/mcs/class/corlib/System.Threading/CancellationTokenSource.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Generic; diff --git a/mcs/class/corlib/System.Threading/CountdownEvent.cs b/mcs/class/corlib/System.Threading/CountdownEvent.cs index 0046f8141b7..59c282ea567 100644 --- a/mcs/class/corlib/System.Threading/CountdownEvent.cs +++ b/mcs/class/corlib/System.Threading/CountdownEvent.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System.Threading/LazyInitializer.cs b/mcs/class/corlib/System.Threading/LazyInitializer.cs index 487b40e29fb..bf1b1f470a6 100644 --- a/mcs/class/corlib/System.Threading/LazyInitializer.cs +++ b/mcs/class/corlib/System.Threading/LazyInitializer.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System.Threading/LazyThreadSafetyMode.cs b/mcs/class/corlib/System.Threading/LazyThreadSafetyMode.cs index b23ffe7a3ab..6ed0f6115a5 100644 --- a/mcs/class/corlib/System.Threading/LazyThreadSafetyMode.cs +++ b/mcs/class/corlib/System.Threading/LazyThreadSafetyMode.cs @@ -26,7 +26,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_4_0 || MOONLIGHT +#if NET_4_0 || MOONLIGHT || MOBILE using System; diff --git a/mcs/class/corlib/System.Threading/LockRecursionException.cs b/mcs/class/corlib/System.Threading/LockRecursionException.cs index 43bc3edbf53..9efb404d558 100644 --- a/mcs/class/corlib/System.Threading/LockRecursionException.cs +++ b/mcs/class/corlib/System.Threading/LockRecursionException.cs @@ -25,7 +25,7 @@ */ -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Runtime.Serialization; diff --git a/mcs/class/corlib/System.Threading/ManualResetEventSlim.cs b/mcs/class/corlib/System.Threading/ManualResetEventSlim.cs index 30fec4ae884..3e291a2c477 100644 --- a/mcs/class/corlib/System.Threading/ManualResetEventSlim.cs +++ b/mcs/class/corlib/System.Threading/ManualResetEventSlim.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System.Threading/Monitor.cs b/mcs/class/corlib/System.Threading/Monitor.cs index 7be943f4ed3..4188c0a001a 100644 --- a/mcs/class/corlib/System.Threading/Monitor.cs +++ b/mcs/class/corlib/System.Threading/Monitor.cs @@ -177,7 +177,7 @@ namespace System.Threading } } -#if NET_4_0 || MOONLIGHT +#if NET_4_0 || MOONLIGHT || MOBILE [MethodImplAttribute(MethodImplOptions.InternalCall)] extern static void try_enter_with_atomic_var (object obj, int millisecondsTimeout, ref bool lockTaken); diff --git a/mcs/class/corlib/System.Threading/SemaphoreSlim.cs b/mcs/class/corlib/System.Threading/SemaphoreSlim.cs index f766933a103..4f4e6a7a8ce 100644 --- a/mcs/class/corlib/System.Threading/SemaphoreSlim.cs +++ b/mcs/class/corlib/System.Threading/SemaphoreSlim.cs @@ -25,7 +25,7 @@ using System; using System.Diagnostics; -#if NET_4_0 +#if NET_4_0 || MOBILE namespace System.Threading { [System.Diagnostics.DebuggerDisplayAttribute ("Current Count = {currCount}")] diff --git a/mcs/class/corlib/System.Threading/SpinLock.cs b/mcs/class/corlib/System.Threading/SpinLock.cs index a14899c6d19..59ac22b3e37 100644 --- a/mcs/class/corlib/System.Threading/SpinLock.cs +++ b/mcs/class/corlib/System.Threading/SpinLock.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.Concurrent; diff --git a/mcs/class/corlib/System.Threading/SpinWait.cs b/mcs/class/corlib/System.Threading/SpinWait.cs index 136836746cc..0cbb85cbd8e 100644 --- a/mcs/class/corlib/System.Threading/SpinWait.cs +++ b/mcs/class/corlib/System.Threading/SpinWait.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading diff --git a/mcs/class/corlib/System.Threading/Thread.cs b/mcs/class/corlib/System.Threading/Thread.cs index 7c4b1c2cb7d..402f4c8f2e8 100644 --- a/mcs/class/corlib/System.Threading/Thread.cs +++ b/mcs/class/corlib/System.Threading/Thread.cs @@ -360,7 +360,7 @@ namespace System.Threading { ResetAbort_internal (); } -#if NET_4_0 +#if NET_4_0 || MOBILE [HostProtectionAttribute (SecurityAction.LinkDemand, Synchronization = true, ExternalThreading = true)] [MethodImplAttribute(MethodImplOptions.InternalCall)] public extern static bool Yield (); diff --git a/mcs/class/corlib/System.Threading/ThreadLocal.cs b/mcs/class/corlib/System.Threading/ThreadLocal.cs index d5fcad9a5d1..0ee5247e224 100644 --- a/mcs/class/corlib/System.Threading/ThreadLocal.cs +++ b/mcs/class/corlib/System.Threading/ThreadLocal.cs @@ -24,7 +24,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Runtime.Serialization; using System.Runtime.InteropServices; diff --git a/mcs/class/corlib/System.Threading/WaitHandle.cs b/mcs/class/corlib/System.Threading/WaitHandle.cs index 0c4daaf09ad..0380b5e21bd 100644 --- a/mcs/class/corlib/System.Threading/WaitHandle.cs +++ b/mcs/class/corlib/System.Threading/WaitHandle.cs @@ -213,7 +213,7 @@ namespace System.Threading GC.SuppressFinalize (this); } -#if NET_4_0 +#if NET_4_0 || MOBILE public void Dispose () #else void IDisposable.Dispose () diff --git a/mcs/class/corlib/System.Threading/Watch.cs b/mcs/class/corlib/System.Threading/Watch.cs index a1587496939..c95c90fc8f4 100644 --- a/mcs/class/corlib/System.Threading/Watch.cs +++ b/mcs/class/corlib/System.Threading/Watch.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; namespace System.Threading diff --git a/mcs/class/corlib/System/Action.cs b/mcs/class/corlib/System/Action.cs index d8bbfa07cef..006599b94de 100644 --- a/mcs/class/corlib/System/Action.cs +++ b/mcs/class/corlib/System/Action.cs @@ -31,7 +31,7 @@ using System.Runtime.CompilerServices; namespace System { -#if NET_4_0 +#if NET_4_0 || MOBILE [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] public delegate void Action (); diff --git a/mcs/class/corlib/System/AggregateException.cs b/mcs/class/corlib/System/AggregateException.cs index d7d67a00fac..e75fa60ed15 100644 --- a/mcs/class/corlib/System/AggregateException.cs +++ b/mcs/class/corlib/System/AggregateException.cs @@ -22,7 +22,7 @@ // // -#if NET_4_0 +#if NET_4_0 || MOBILE using System; using System.Collections.ObjectModel; using System.Collections.Generic; diff --git a/mcs/class/corlib/System/Funcs.cs b/mcs/class/corlib/System/Funcs.cs index 61fc6bfb506..ffff3d3f6e5 100644 --- a/mcs/class/corlib/System/Funcs.cs +++ b/mcs/class/corlib/System/Funcs.cs @@ -29,7 +29,7 @@ using System.Runtime.CompilerServices; namespace System { -#if NET_4_0 +#if NET_4_0 || MOBILE [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] public delegate TResult Func (); diff --git a/mcs/class/corlib/System/OperationCanceledException.cs b/mcs/class/corlib/System/OperationCanceledException.cs index 41073521c81..90d5df605ed 100644 --- a/mcs/class/corlib/System/OperationCanceledException.cs +++ b/mcs/class/corlib/System/OperationCanceledException.cs @@ -38,7 +38,7 @@ namespace System public class OperationCanceledException : SystemException { const int Result = unchecked ((int)0x8013153b); -#if NET_4_0 +#if NET_4_0 || MOBILE CancellationToken? token; #endif @@ -66,7 +66,7 @@ namespace System { } -#if NET_4_0 +#if NET_4_0 || MOBILE public OperationCanceledException (CancellationToken token) : this () { diff --git a/mcs/class/corlib/System/Tuple.cs b/mcs/class/corlib/System/Tuple.cs index 08107178727..ad07696f7ca 100644 --- a/mcs/class/corlib/System/Tuple.cs +++ b/mcs/class/corlib/System/Tuple.cs @@ -26,7 +26,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if MOONLIGHT || NET_4_0 +#if MOONLIGHT || NET_4_0 || MOBILE using System; diff --git a/mcs/class/corlib/System/Tuples.cs b/mcs/class/corlib/System/Tuples.cs index 5756fa26843..80de29258c7 100644 --- a/mcs/class/corlib/System/Tuples.cs +++ b/mcs/class/corlib/System/Tuples.cs @@ -27,7 +27,7 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if MOONLIGHT || NET_4_0 +#if MOONLIGHT || NET_4_0 || MOBILE using System; using System.Collections; -- 2.11.4.GIT