1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
|
//
// System.Threading.Thread.cs
//
// Author:
// Dick Porter (dick@ximian.com)
//
// (C) Ximian, Inc. http://www.ximian.com
// Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Runtime.Remoting.Contexts;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.Security.Permissions;
using System.Security.Principal;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.IO;
using System.Collections;
using System.Reflection;
using System.Security;
#if NET_2_0
using System.Runtime.ConstrainedExecution;
#endif
namespace System.Threading {
[ClassInterface (ClassInterfaceType.None)]
#if NET_2_0
[ComVisible (true)]
[ComDefaultInterface (typeof (_Thread))]
public sealed class Thread : CriticalFinalizerObject, _Thread {
#else
public sealed class Thread : _Thread {
#endif
#pragma warning disable 169, 414, 649
#region Sync with metadata/object-internals.h
int lock_thread_id;
// stores a thread handle
private IntPtr system_thread_handle;
/* Note this is an opaque object (an array), not a CultureInfo */
private object cached_culture_info;
private IntPtr unused0;
private bool threadpool_thread;
/* accessed only from unmanaged code */
private IntPtr name;
private int name_len;
private ThreadState state = ThreadState.Unstarted;
private object abort_exc;
private int abort_state_handle;
/* thread_id is only accessed from unmanaged code */
private Int64 thread_id;
/* start_notify is used by the runtime to signal that Start()
* is ok to return
*/
private IntPtr start_notify;
private IntPtr stack_ptr;
private UIntPtr static_data; /* GC-tracked */
private IntPtr jit_data;
private IntPtr lock_data;
/* current System.Runtime.Remoting.Contexts.Context instance
keep as an object to avoid triggering its class constructor when not needed */
private object current_appcontext;
int stack_size;
object start_obj;
private IntPtr appdomain_refs;
private int interruption_requested;
private IntPtr suspend_event;
private IntPtr suspended_event;
private IntPtr resume_event;
private IntPtr synch_cs;
private IntPtr serialized_culture_info;
private int serialized_culture_info_len;
private IntPtr serialized_ui_culture_info;
private int serialized_ui_culture_info_len;
private bool thread_dump_requested;
private IntPtr end_stack;
private bool thread_interrupt_requested;
#if NET_2_1
private byte apartment_state;
#else
private byte apartment_state = (byte)ApartmentState.Unknown;
#endif
volatile int critical_region_level;
private int small_id;
private IntPtr manage_callback;
private object pending_exception;
/* This is the ExecutionContext that will be set by
start_wrapper() in the runtime. */
private ExecutionContext ec_to_set;
private IntPtr interrupt_on_stop;
/*
* These fields are used to avoid having to increment corlib versions
* when a new field is added to the unmanaged MonoThread structure.
*/
private IntPtr unused3;
private IntPtr unused4;
private IntPtr unused5;
private IntPtr unused6;
#endregion
#pragma warning restore 169, 414, 649
// the name of local_slots is important as it's used by the runtime.
[ThreadStatic]
static object[] local_slots;
/* The actual ExecutionContext of the thread. It's
ThreadStatic so that it's not shared between
AppDomains. */
[ThreadStatic]
static ExecutionContext _ec;
// can be both a ThreadStart and a ParameterizedThreadStart
private MulticastDelegate threadstart;
//private string thread_name=null;
#if NET_2_0
private static int _managed_id_counter;
private int managed_id;
#endif
private IPrincipal _principal;
public static Context CurrentContext {
[SecurityPermission (SecurityAction.LinkDemand, Infrastructure=true)]
get {
return(AppDomain.InternalGetContext ());
}
}
#if !NET_2_1 || MONOTOUCH
public static IPrincipal CurrentPrincipal {
get {
IPrincipal p = null;
Thread th = CurrentThread;
lock (th) {
p = th._principal;
if (p == null) {
p = GetDomain ().DefaultPrincipal;
th._principal = p;
}
}
return p;
}
[SecurityPermission (SecurityAction.Demand, ControlPrincipal = true)]
set {
CurrentThread._principal = value;
}
}
#endif
// Looks up the object associated with the current thread
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern static Thread CurrentThread_internal();
public static Thread CurrentThread {
#if NET_2_0
[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
#endif
get {
return(CurrentThread_internal());
}
}
internal static int CurrentThreadId {
get {
return (int)(CurrentThread.thread_id);
}
}
#if !NET_2_1 || MONOTOUCH
// Stores a hash keyed by strings of LocalDataStoreSlot objects
static Hashtable datastorehash;
private static object datastore_lock = new object ();
private static void InitDataStoreHash () {
lock (datastore_lock) {
if (datastorehash == null) {
datastorehash = Hashtable.Synchronized(new Hashtable());
}
}
}
public static LocalDataStoreSlot AllocateNamedDataSlot (string name) {
lock (datastore_lock) {
if (datastorehash == null)
InitDataStoreHash ();
LocalDataStoreSlot slot = (LocalDataStoreSlot)datastorehash [name];
if (slot != null) {
// This exception isnt documented (of
// course) but .net throws it
throw new ArgumentException("Named data slot already added");
}
slot = AllocateDataSlot ();
datastorehash.Add (name, slot);
return slot;
}
}
public static void FreeNamedDataSlot (string name) {
lock (datastore_lock) {
if (datastorehash == null)
InitDataStoreHash ();
LocalDataStoreSlot slot = (LocalDataStoreSlot)datastorehash [name];
if (slot != null) {
datastorehash.Remove (slot);
}
}
}
public static LocalDataStoreSlot AllocateDataSlot () {
return new LocalDataStoreSlot (true);
}
public static object GetData (LocalDataStoreSlot slot) {
object[] slots = local_slots;
if (slot == null)
throw new ArgumentNullException ("slot");
if (slots != null && slot.slot < slots.Length)
return slots [slot.slot];
return null;
}
public static void SetData (LocalDataStoreSlot slot, object data) {
object[] slots = local_slots;
if (slot == null)
throw new ArgumentNullException ("slot");
if (slots == null) {
slots = new object [slot.slot + 2];
local_slots = slots;
} else if (slot.slot >= slots.Length) {
object[] nslots = new object [slot.slot + 2];
slots.CopyTo (nslots, 0);
slots = nslots;
local_slots = slots;
}
slots [slot.slot] = data;
}
[MethodImplAttribute (MethodImplOptions.InternalCall)]
internal extern static void FreeLocalSlotValues (int slot, bool thread_local);
public static LocalDataStoreSlot GetNamedDataSlot(string name) {
lock (datastore_lock) {
if (datastorehash == null)
InitDataStoreHash ();
LocalDataStoreSlot slot=(LocalDataStoreSlot)datastorehash[name];
if(slot==null) {
slot=AllocateNamedDataSlot(name);
}
return(slot);
}
}
#endif
public static AppDomain GetDomain() {
return AppDomain.CurrentDomain;
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public extern static int GetDomainID();
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern static void ResetAbort_internal();
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public static void ResetAbort ()
{
ResetAbort_internal ();
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern static void Sleep_internal(int ms);
public static void Sleep (int millisecondsTimeout)
{
if (millisecondsTimeout < Timeout.Infinite)
throw new ArgumentOutOfRangeException ("millisecondsTimeout", "Negative timeout");
Sleep_internal (millisecondsTimeout);
}
public static void Sleep (TimeSpan timeout)
{
long ms = (long) timeout.TotalMilliseconds;
if (ms < Timeout.Infinite || ms > Int32.MaxValue)
throw new ArgumentOutOfRangeException ("timeout", "timeout out of range");
Sleep_internal ((int) ms);
}
// Returns the system thread handle
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern IntPtr Thread_internal (MulticastDelegate start);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void Thread_init ();
public Thread(ThreadStart start) {
if(start==null) {
throw new ArgumentNullException("Null ThreadStart");
}
threadstart=start;
Thread_init ();
}
#if !NET_2_1 || MONOTOUCH
#if NET_2_0
[Obsolete ("Deprecated in favor of GetApartmentState, SetApartmentState and TrySetApartmentState.")]
#endif
public ApartmentState ApartmentState {
get {
if ((ThreadState & ThreadState.Stopped) != 0)
throw new ThreadStateException ("Thread is dead; state can not be accessed.");
return (ApartmentState)apartment_state;
}
set {
#if NET_2_0
TrySetApartmentState (value);
#else
/* Only throw this exception when
* changing the state of another
* thread. See bug 324338
*/
if ((this != CurrentThread) &&
(ThreadState & ThreadState.Unstarted) == 0)
throw new ThreadStateException ("Thread was in an invalid state for the operation being executed.");
if (value != ApartmentState.STA && value != ApartmentState.MTA)
throw new ArgumentOutOfRangeException ("value is not a valid apartment state.");
if ((ApartmentState)apartment_state == ApartmentState.Unknown)
apartment_state = (byte)value;
#endif
}
}
#endif // !NET_2_1
//[MethodImplAttribute (MethodImplOptions.InternalCall)]
//private static extern int current_lcid ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern CultureInfo GetCachedCurrentCulture ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern byte[] GetSerializedCurrentCulture ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern void SetCachedCurrentCulture (CultureInfo culture);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern void SetSerializedCurrentCulture (byte[] culture);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern CultureInfo GetCachedCurrentUICulture ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern byte[] GetSerializedCurrentUICulture ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern void SetCachedCurrentUICulture (CultureInfo culture);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern void SetSerializedCurrentUICulture (byte[] culture);
/* If the current_lcid() isn't known by CultureInfo,
* it will throw an exception which may cause
* String.Concat to try and recursively look up the
* CurrentCulture, which will throw an exception, etc.
* Use a boolean to short-circuit this scenario.
*/
private bool in_currentculture=false;
static object culture_lock = new object ();
/*
* Thread objects are shared between appdomains, and CurrentCulture
* should always return an object in the calling appdomain. See bug
* http://bugzilla.ximian.com/show_bug.cgi?id=50049 for more info.
* This is hard to implement correctly and efficiently, so the current
* implementation is not perfect: changes made in one appdomain to the
* state of the current cultureinfo object are not visible to other
* appdomains.
*/
public CultureInfo CurrentCulture {
get {
if (in_currentculture)
/* Bail out */
return CultureInfo.InvariantCulture;
CultureInfo culture = GetCachedCurrentCulture ();
if (culture != null)
return culture;
byte[] arr = GetSerializedCurrentCulture ();
if (arr == null) {
lock (culture_lock) {
in_currentculture=true;
culture = CultureInfo.ConstructCurrentCulture ();
//
// Don't serialize the culture in this case to avoid
// initializing the serialization infrastructure in the
// common case when the culture is not set explicitly.
//
SetCachedCurrentCulture (culture);
in_currentculture = false;
NumberFormatter.SetThreadCurrentCulture (culture);
return culture;
}
}
/*
* No cultureinfo object exists for this domain, so create one
* by deserializing the serialized form.
*/
in_currentculture = true;
try {
BinaryFormatter bf = new BinaryFormatter ();
MemoryStream ms = new MemoryStream (arr);
culture = (CultureInfo)bf.Deserialize (ms);
SetCachedCurrentCulture (culture);
} finally {
in_currentculture = false;
}
NumberFormatter.SetThreadCurrentCulture (culture);
return culture;
}
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
set {
if (value == null)
throw new ArgumentNullException ("value");
CultureInfo culture = GetCachedCurrentCulture ();
if (culture == value)
return;
value.CheckNeutral ();
in_currentculture = true;
try {
SetCachedCurrentCulture (value);
byte[] serialized_form = null;
if (value.IsReadOnly && value.cached_serialized_form != null) {
serialized_form = value.cached_serialized_form;
} else {
BinaryFormatter bf = new BinaryFormatter();
MemoryStream ms = new MemoryStream ();
bf.Serialize (ms, value);
serialized_form = ms.GetBuffer ();
if (value.IsReadOnly)
value.cached_serialized_form = serialized_form;
}
SetSerializedCurrentCulture (serialized_form);
} finally {
in_currentculture = false;
}
NumberFormatter.SetThreadCurrentCulture (value);
}
}
public CultureInfo CurrentUICulture {
get {
if (in_currentculture)
/* Bail out */
return CultureInfo.InvariantCulture;
CultureInfo culture = GetCachedCurrentUICulture ();
if (culture != null)
return culture;
byte[] arr = GetSerializedCurrentUICulture ();
if (arr == null) {
lock (culture_lock) {
in_currentculture=true;
/* We don't
* distinguish
* between
* System and
* UI cultures
*/
culture = CultureInfo.ConstructCurrentUICulture ();
//
// Don't serialize the culture in this case to avoid
// initializing the serialization infrastructure in the
// common case when the culture is not set explicitly.
//
SetCachedCurrentUICulture (culture);
in_currentculture = false;
return culture;
}
}
/*
* No cultureinfo object exists for this domain, so create one
* by deserializing the serialized form.
*/
in_currentculture = true;
try {
BinaryFormatter bf = new BinaryFormatter ();
MemoryStream ms = new MemoryStream (arr);
culture = (CultureInfo)bf.Deserialize (ms);
SetCachedCurrentUICulture (culture);
}
finally {
in_currentculture = false;
}
return culture;
}
set {
if (value == null)
throw new ArgumentNullException ("value");
CultureInfo culture = GetCachedCurrentUICulture ();
if (culture == value)
return;
in_currentculture = true;
try {
SetCachedCurrentUICulture (value);
byte[] serialized_form = null;
if (value.IsReadOnly && value.cached_serialized_form != null) {
serialized_form = value.cached_serialized_form;
} else {
BinaryFormatter bf = new BinaryFormatter();
MemoryStream ms = new MemoryStream ();
bf.Serialize (ms, value);
serialized_form = ms.GetBuffer ();
if (value.IsReadOnly)
value.cached_serialized_form = serialized_form;
}
SetSerializedCurrentUICulture (serialized_form);
} finally {
in_currentculture = false;
}
}
}
public bool IsThreadPoolThread {
get {
return IsThreadPoolThreadInternal;
}
}
internal bool IsThreadPoolThreadInternal {
get {
return threadpool_thread;
}
set {
threadpool_thread = value;
}
}
public bool IsAlive {
get {
ThreadState curstate = GetState ();
if((curstate & ThreadState.Aborted) != 0 ||
(curstate & ThreadState.Stopped) != 0 ||
(curstate & ThreadState.Unstarted) != 0) {
return(false);
} else {
return(true);
}
}
}
public bool IsBackground {
get {
ThreadState thread_state = GetState ();
if ((thread_state & ThreadState.Stopped) != 0)
throw new ThreadStateException ("Thread is dead; state can not be accessed.");
return (thread_state & ThreadState.Background) != 0;
}
set {
if (value) {
SetState (ThreadState.Background);
} else {
ClrState (ThreadState.Background);
}
}
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern string GetName_internal ();
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void SetName_internal (String name);
/*
* The thread name must be shared by appdomains, so it is stored in
* unmanaged code.
*/
public string Name {
get {
return GetName_internal ();
}
set {
SetName_internal (value);
}
}
#if !NET_2_1 || MONOTOUCH
public ThreadPriority Priority {
get {
return(ThreadPriority.Lowest);
}
set {
// FIXME: Implement setter.
}
}
#endif
public ThreadState ThreadState {
get {
return GetState ();
}
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void Abort_internal (object stateInfo);
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public void Abort ()
{
Abort_internal (null);
}
#if !NET_2_1 || MONOTOUCH
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public void Abort (object stateInfo)
{
Abort_internal (stateInfo);
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
internal extern object GetAbortExceptionState ();
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern void Interrupt_internal ();
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public void Interrupt ()
{
Interrupt_internal ();
}
#endif
// The current thread joins with 'this'. Set ms to 0 to block
// until this actually exits.
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern bool Join_internal(int ms, IntPtr handle);
public void Join()
{
Join_internal(Timeout.Infinite, system_thread_handle);
}
public bool Join(int millisecondsTimeout)
{
if (millisecondsTimeout < Timeout.Infinite)
throw new ArgumentOutOfRangeException ("millisecondsTimeout", "Timeout less than zero");
return Join_internal (millisecondsTimeout, system_thread_handle);
}
#if !NET_2_1 || MONOTOUCH
public bool Join(TimeSpan timeout)
{
long ms = (long) timeout.TotalMilliseconds;
if (ms < Timeout.Infinite || ms > Int32.MaxValue)
throw new ArgumentOutOfRangeException ("timeout", "timeout out of range");
return Join_internal ((int) ms, system_thread_handle);
}
#endif
#if NET_1_1
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public extern static void MemoryBarrier ();
#endif
#if !NET_2_1 || MONOTOUCH
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void Resume_internal();
#if NET_2_0
[Obsolete ("")]
#endif
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public void Resume ()
{
Resume_internal ();
}
#endif // !NET_2_1
[MethodImplAttribute (MethodImplOptions.InternalCall)]
private extern static void SpinWait_nop ();
#if NET_2_0
[ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.Success)]
#endif
public static void SpinWait (int iterations)
{
if (iterations < 0)
return;
while (iterations-- > 0)
{
SpinWait_nop ();
}
}
#if NET_2_1 && !MONOTOUCH
private void StartSafe ()
{
try {
if (threadstart is ThreadStart) {
((ThreadStart) threadstart) ();
} else {
((ParameterizedThreadStart) threadstart) (start_obj);
}
} catch (ThreadAbortException) {
// do nothing
} catch (Exception ex) {
MoonlightUnhandledException (ex);
}
}
static MethodInfo moonlight_unhandled_exception = null;
static internal void MoonlightUnhandledException (Exception e)
{
try {
if (moonlight_unhandled_exception == null) {
var assembly = System.Reflection.Assembly.Load ("System.Windows, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=7cec85d7bea7798e");
var application = assembly.GetType ("System.Windows.Application");
moonlight_unhandled_exception = application.GetMethod ("OnUnhandledException",
System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static);
}
moonlight_unhandled_exception.Invoke (null, new object [] { null, e });
}
catch {
try {
Console.WriteLine ("Unexpected exception while trying to report unhandled application exception: {0}", e);
} catch {
}
}
}
#endif
public void Start() {
// propagate informations from the original thread to the new thread
#if NET_2_0
if (!ExecutionContext.IsFlowSuppressed ())
ec_to_set = ExecutionContext.Capture ();
#else
// before 2.0 this was only used for security (mostly CAS) so we
// do this only if the security manager is active
if (SecurityManager.SecurityEnabled)
ec_to_set = ExecutionContext.Capture ();
#endif
if (CurrentThread._principal != null)
_principal = CurrentThread._principal;
// Thread_internal creates and starts the new thread,
#if NET_2_1 && !MONOTOUCH
if (Thread_internal((ThreadStart) StartSafe) == (IntPtr) 0)
#else
if (Thread_internal(threadstart) == (IntPtr) 0)
#endif
throw new SystemException ("Thread creation failed.");
}
#if !NET_2_1 || MONOTOUCH
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void Suspend_internal();
#if NET_2_0
[Obsolete ("")]
#endif
[SecurityPermission (SecurityAction.Demand, ControlThread=true)]
public void Suspend ()
{
Suspend_internal ();
}
#endif // !NET_2_1
// Closes the system thread handle
[MethodImplAttribute(MethodImplOptions.InternalCall)]
private extern void Thread_free_internal(IntPtr handle);
#if NET_2_0
[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
#endif
~Thread() {
Thread_free_internal(system_thread_handle);
}
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern private void SetState (ThreadState set);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern private void ClrState (ThreadState clr);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern private ThreadState GetState ();
#if NET_1_1
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static byte VolatileRead (ref byte address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static double VolatileRead (ref double address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static short VolatileRead (ref short address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static int VolatileRead (ref int address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static long VolatileRead (ref long address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static IntPtr VolatileRead (ref IntPtr address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static object VolatileRead (ref object address);
[CLSCompliant(false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static sbyte VolatileRead (ref sbyte address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static float VolatileRead (ref float address);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static ushort VolatileRead (ref ushort address);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static uint VolatileRead (ref uint address);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static ulong VolatileRead (ref ulong address);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static UIntPtr VolatileRead (ref UIntPtr address);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref byte address, byte value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref double address, double value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref short address, short value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref int address, int value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref long address, long value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref IntPtr address, IntPtr value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref object address, object value);
[CLSCompliant(false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref sbyte address, sbyte value);
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref float address, float value);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref ushort address, ushort value);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref uint address, uint value);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref ulong address, ulong value);
[CLSCompliant (false)]
[MethodImplAttribute (MethodImplOptions.InternalCall)]
extern public static void VolatileWrite (ref UIntPtr address, UIntPtr value);
#endif
#if NET_2_0
private static int GetNewManagedId() {
return Interlocked.Increment(ref _managed_id_counter);
}
public Thread (ThreadStart start, int maxStackSize)
{
if (start == null)
throw new ArgumentNullException ("start");
if (maxStackSize < 131072)
throw new ArgumentException ("< 128 kb", "maxStackSize");
threadstart = start;
stack_size = maxStackSize;
Thread_init ();
}
public Thread (ParameterizedThreadStart start)
{
if (start == null)
throw new ArgumentNullException ("start");
threadstart = start;
Thread_init ();
}
public Thread (ParameterizedThreadStart start, int maxStackSize)
{
if (start == null)
throw new ArgumentNullException ("start");
if (maxStackSize < 131072)
throw new ArgumentException ("< 128 kb", "maxStackSize");
threadstart = start;
stack_size = maxStackSize;
Thread_init ();
}
[MonoTODO ("limited to CompressedStack support")]
public ExecutionContext ExecutionContext {
[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
get {
if (_ec == null)
_ec = new ExecutionContext ();
return _ec;
}
}
public int ManagedThreadId {
[ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.Success)]
get {
if (managed_id == 0) {
int new_managed_id = GetNewManagedId ();
Interlocked.CompareExchange (ref managed_id, new_managed_id, 0);
}
return managed_id;
}
}
[ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
public static void BeginCriticalRegion ()
{
CurrentThread.critical_region_level++;
}
[ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
public static void EndCriticalRegion ()
{
CurrentThread.critical_region_level--;
}
[ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.MayFail)]
public static void BeginThreadAffinity ()
{
// Managed and native threads are currently bound together.
}
[ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.MayFail)]
public static void EndThreadAffinity ()
{
// Managed and native threads are currently bound together.
}
#if !NET_2_1 || MONOTOUCH
public ApartmentState GetApartmentState ()
{
return (ApartmentState)apartment_state;
}
public void SetApartmentState (ApartmentState state)
{
if (!TrySetApartmentState (state))
throw new InvalidOperationException ("Failed to set the specified COM apartment state.");
}
public bool TrySetApartmentState (ApartmentState state)
{
/* Only throw this exception when changing the
* state of another thread. See bug 324338
*/
if ((this != CurrentThread) &&
(ThreadState & ThreadState.Unstarted) == 0)
throw new ThreadStateException ("Thread was in an invalid state for the operation being executed.");
if ((ApartmentState)apartment_state != ApartmentState.Unknown)
return false;
apartment_state = (byte)state;
return true;
}
#endif // !NET_2_1
[ComVisible (false)]
public override int GetHashCode ()
{
return ManagedThreadId;
}
public void Start (object parameter)
{
start_obj = parameter;
Start ();
}
#else
internal ExecutionContext ExecutionContext {
get {
if (_ec == null)
_ec = new ExecutionContext ();
return _ec;
}
}
#endif
#if !NET_2_1 || MONOTOUCH
// NOTE: This method doesn't show in the class library status page because
// it cannot be "found" with the StrongNameIdentityPermission for ECMA key.
// But it's there!
[SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
[StrongNameIdentityPermission (SecurityAction.LinkDemand, PublicKey="00000000000000000400000000000000")]
#if NET_2_0
[Obsolete ("see CompressedStack class")]
#endif
#if NET_1_1
public
#else
internal
#endif
CompressedStack GetCompressedStack ()
{
// Note: returns null if no CompressedStack has been set.
// However CompressedStack.GetCompressedStack returns an
// (empty?) CompressedStack instance.
CompressedStack cs = ExecutionContext.SecurityContext.CompressedStack;
return ((cs == null) || cs.IsEmpty ()) ? null : cs.CreateCopy ();
}
// NOTE: This method doesn't show in the class library status page because
// it cannot be "found" with the StrongNameIdentityPermission for ECMA key.
// But it's there!
[SecurityPermission (SecurityAction.LinkDemand, UnmanagedCode = true)]
[StrongNameIdentityPermission (SecurityAction.LinkDemand, PublicKey="00000000000000000400000000000000")]
#if NET_2_0
[Obsolete ("see CompressedStack class")]
#endif
#if NET_1_1
public
#else
internal
#endif
void SetCompressedStack (CompressedStack stack)
{
ExecutionContext.SecurityContext.CompressedStack = stack;
}
#endif
#if NET_1_1
void _Thread.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
{
throw new NotImplementedException ();
}
void _Thread.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo)
{
throw new NotImplementedException ();
}
void _Thread.GetTypeInfoCount (out uint pcTInfo)
{
throw new NotImplementedException ();
}
void _Thread.Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams,
IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr)
{
throw new NotImplementedException ();
}
#endif
}
}
|