[NUI] Add Tizen.NUI.Tests for tct developing (#2090)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / nunit.framework / Internal / ThreadUtility.cs
1 // ***********************************************************************
2 // Copyright (c) 2011 Charlie Poole
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 // ***********************************************************************
23 #define PORTABLE
24 #define TIZEN
25 #define NUNIT_FRAMEWORK
26 #define NUNITLITE
27 #define NET_4_5
28 #define PARALLEL
29 #if !PORTABLE
30 using System;
31 using System.Threading;
32
33 namespace NUnit.Framework.Internal
34 {
35     /// <summary>
36     /// ThreadUtility provides a set of static methods convenient
37     /// for working with threads.
38     /// </summary>
39     public static class ThreadUtility
40     {
41         /// <summary>
42         /// Do our best to Kill a thread
43         /// </summary>
44         /// <param name="thread">The thread to kill</param>
45         public static void Kill(Thread thread)
46         {
47 #if SILVERLIGHT
48             thread.Abort();
49 #else
50             Kill(thread, null);
51 #endif
52         }
53
54 #if !SILVERLIGHT
55         /// <summary>
56         /// Do our best to kill a thread, passing state info
57         /// </summary>
58         /// <param name="thread">The thread to kill</param>
59         /// <param name="stateInfo">Info for the ThreadAbortException handler</param>
60         public static void Kill(Thread thread, object stateInfo)
61         {
62             try
63             {
64                 if (stateInfo == null)
65                     thread.Abort();
66                 else
67                     thread.Abort(stateInfo);
68             }
69             catch (ThreadStateException)
70             {
71 #if !NETCF
72                 // Although obsolete, this use of Resume() takes care of
73                 // the odd case where a ThreadStateException is received.
74 #pragma warning disable 0618,0612    // Thread.Resume has been deprecated
75                 thread.Resume();
76 #pragma warning restore 0618,0612   // Thread.Resume has been deprecated
77 #endif
78             }
79
80 #if !NETCF
81             if ( (thread.ThreadState & ThreadState.WaitSleepJoin) != 0 )
82                 thread.Interrupt();
83 #endif
84         }
85 #endif
86     }
87 }
88 #endif