| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975 |
- //
- // System.Threading.Thread.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- // Copyright (C) 2004-2005 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.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))]
- #endif
- public sealed class Thread : _Thread {
- #region Sync with metadata/object-internals.h
- int lock_thread_id;
- // stores a thread handle
- private IntPtr system_thread_handle;
-
- private IntPtr culture_info;
- private IntPtr ui_culture_info;
- 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;
- internal object abort_state;
- /* 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 IntPtr static_data;
- private IntPtr jit_data;
- private IntPtr lock_data;
- Context current_appcontext;
- int stack_size;
- object start_obj;
- private IntPtr appdomain_refs;
- private bool interruption_requested;
- private IntPtr suspend_event;
- private IntPtr suspended_event;
- private IntPtr resume_event;
- /* Don't lock on synch_lock in managed code, since it can result in deadlocks */
- private object synch_lock = new Object();
- 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 ExecutionContext _ec;
- /*
- * These fields are used to avoid having to increment corlib versions
- * when a new field is added to the unmanaged MonoThread structure.
- */
- private IntPtr unused1;
- private IntPtr unused2;
- private IntPtr unused3;
- private IntPtr unused4;
- private IntPtr unused5;
- private IntPtr unused6;
- private IntPtr unused7;
- #endregion
- [ThreadStatic]
- static Hashtable slothash;
- // can be both a ThreadSart and a ParameterizedThreadStart
- private MulticastDelegate threadstart;
- private string thread_name=null;
-
- private IPrincipal _principal;
- public static Context CurrentContext {
- [SecurityPermission (SecurityAction.LinkDemand, Infrastructure=true)]
- get {
- return(AppDomain.InternalGetContext ());
- }
- }
- 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;
- }
- }
- // 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);
- }
- }
- // 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 = new LocalDataStoreSlot();
- 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);
- }
- }
- }
- private static Hashtable SlotHash {
- get {
- if (slothash == null)
- slothash = new Hashtable ();
- return slothash;
- }
- }
- public static LocalDataStoreSlot AllocateDataSlot() {
- return new LocalDataStoreSlot();
- }
- public static object GetData(LocalDataStoreSlot slot) {
- return SlotHash [slot];
- }
- public static void SetData(LocalDataStoreSlot slot,
- object data) {
- SlotHash [slot] = data;
- }
- public static AppDomain GetDomain() {
- return AppDomain.CurrentDomain;
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern static int GetDomainID();
- 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);
- }
- }
-
- [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<0) && (millisecondsTimeout != Timeout.Infinite)) {
- throw new ArgumentException("Negative timeout");
- }
- Sleep_internal(millisecondsTimeout);
- }
- public static void Sleep(TimeSpan timeout) {
- // LAMESPEC: says to throw ArgumentException too
- int ms=Convert.ToInt32(timeout.TotalMilliseconds);
-
- if(ms < 0 || ms > Int32.MaxValue) {
- throw new ArgumentOutOfRangeException("Timeout out of range");
- }
- Sleep_internal(ms);
- }
- // Returns the system thread handle
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern IntPtr Thread_internal (MulticastDelegate start);
- public Thread(ThreadStart start) {
- if(start==null) {
- throw new ArgumentNullException("Null ThreadStart");
- }
- threadstart=start;
- }
- [MonoTODO]
- #if NET_2_0
- [Obsolete ("Deprecated in favor of GetApartmentState, SetApartmentState and TrySetApartmentState.")]
- #endif
- public ApartmentState ApartmentState {
- get {
- return(ApartmentState.Unknown);
- }
-
- set {
- }
- }
- [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 static 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;
- 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;
- }
- return culture;
- }
-
- [SecurityPermission (SecurityAction.Demand, ControlThread=true)]
- set {
- if (value == null)
- throw new ArgumentNullException ("value");
- value.CheckNeutral ();
- in_currentculture = true;
- try {
- BinaryFormatter bf = new BinaryFormatter();
- MemoryStream ms = new MemoryStream ();
- bf.Serialize (ms, value);
- SetCachedCurrentCulture (value);
- SetSerializedCurrentCulture (ms.GetBuffer ());
- } finally {
- in_currentculture = false;
- }
- }
- }
- 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 {
- in_currentculture = true;
-
- if (value == null)
- throw new ArgumentNullException ("value");
- try {
- BinaryFormatter bf = new BinaryFormatter();
- MemoryStream ms = new MemoryStream ();
- bf.Serialize (ms, value);
- SetCachedCurrentUICulture (value);
- SetSerializedCurrentUICulture (ms.GetBuffer ());
- } 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 {
- return (GetState () & 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);
- }
- }
- [MonoTODO]
- public ThreadPriority Priority {
- get {
- return(ThreadPriority.Lowest);
- }
-
- set {
- }
- }
- 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);
- }
- [SecurityPermission (SecurityAction.Demand, ControlThread=true)]
- public void Abort (object stateInfo)
- {
- Abort_internal (stateInfo);
- }
-
- [MonoTODO]
- [SecurityPermission (SecurityAction.Demand, ControlThread=true)]
- public void Interrupt ()
- {
- throw new NotImplementedException ();
- }
- // 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 && millisecondsTimeout < 0)
- throw new ArgumentException ("Timeout less than zero", "millisecondsTimeout");
- return Join_internal(millisecondsTimeout, system_thread_handle);
- }
- public bool Join(TimeSpan timeout)
- {
- // LAMESPEC: says to throw ArgumentException too
- int ms=Convert.ToInt32(timeout.TotalMilliseconds);
-
- if(ms < 0 || ms > Int32.MaxValue) {
- throw new ArgumentOutOfRangeException("timeout out of range");
- }
- return Join_internal(ms, system_thread_handle);
- }
- #if NET_1_1
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public extern static void MemoryBarrier ();
- #endif
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern void Resume_internal();
- #if NET_2_0
- [Obsolete ("")]
- #endif
- [SecurityPermission (SecurityAction.Demand, ControlThread=true)]
- public void Resume ()
- {
- Resume_internal ();
- }
- [MonoTODO]
- #if NET_2_0
- [ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.Success)]
- #endif
- public static void SpinWait (int iterations)
- {
- throw new NotImplementedException ();
- }
- public void Start() {
- // propagate informations from the original thread to the new thread
- #if NET_2_0
- if (!ExecutionContext.IsFlowSuppressed ())
- _ec = 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 = ExecutionContext.Capture ();
- #endif
- // Thread_internal creates and starts the new thread,
- if (Thread_internal(threadstart) == (IntPtr) 0)
- throw new SystemException ("Thread creation failed.");
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- private extern void Suspend_internal();
- #if NET_2_0
- [Obsolete ("")]
- #endif
- [SecurityPermission (SecurityAction.Demand, ControlThread=true)]
- public void Suspend ()
- {
- Suspend_internal ();
- }
- // 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() {
- // Free up the handle
- if (system_thread_handle != (IntPtr) 0)
- 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
- 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;
- }
- public Thread (ParameterizedThreadStart start)
- {
- if (start == null)
- throw new ArgumentNullException ("start");
- threadstart = start;
- }
- 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;
- }
- [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 { return (int)thread_id; }
- }
- [MonoTODO]
- [ReliabilityContract (Consistency.WillNotCorruptState, Cer.MayFail)]
- public static void BeginCriticalRegion ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- [ReliabilityContract (Consistency.WillNotCorruptState, Cer.Success)]
- public static void EndCriticalRegion ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- [ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.MayFail)]
- public static void BeginThreadAffinity ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- [ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.MayFail)]
- public static void EndThreadAffinity ()
- {
- throw new NotImplementedException ();
- }
- //
- // We disable warning 618, because we are accessing the
- // empty property ApartmentState which produces an Obsolete
- // message, but since its an empty routine needed for 1.x
- // we use it.
- //
- // Maybe we should later turn these into internal methods for 1.x
- // instead and have the property call these.
-
-
- [MonoTODO]
- public ApartmentState GetApartmentState ()
- {
- return this.ApartmentState;
- }
- [MonoTODO]
- public void SetApartmentState (ApartmentState state)
- {
- this.ApartmentState = state;
- }
- [MonoTODO]
- public bool TrySetApartmentState (ApartmentState state)
- {
- try {
- this.ApartmentState = state;
- return true;
- }
- catch (ArgumentException) {
- throw;
- }
- catch {
- return false;
- }
- }
-
- [ComVisible (false)]
- public override int GetHashCode ()
- {
- // ??? overridden but not guaranteed to be unique ???
- return (int)thread_id;
- }
- public void Start (object parameter)
- {
- start_obj = parameter;
- Start ();
- }
- #else
- internal ExecutionContext ExecutionContext {
- get {
- if (_ec == null)
- _ec = new ExecutionContext ();
- return _ec;
- }
- }
- #endif
- // 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;
- }
- #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
- }
- }
|