[io-layer] Remove GetCurrentThreadId
[mono.git] / mono / metadata / threads.c
1 /*
2  * threads.c: Thread support internal calls
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *      Paolo Molaro (lupus@ximian.com)
7  *      Patrik Torstensson (patrik.torstensson@labs2.com)
8  *
9  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
10  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
11  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
12  */
13
14 #include <config.h>
15
16 #include <glib.h>
17 #include <string.h>
18
19 #include <mono/metadata/object.h>
20 #include <mono/metadata/domain-internals.h>
21 #include <mono/metadata/profiler-private.h>
22 #include <mono/metadata/threads.h>
23 #include <mono/metadata/threads-types.h>
24 #include <mono/metadata/exception.h>
25 #include <mono/metadata/environment.h>
26 #include <mono/metadata/monitor.h>
27 #include <mono/metadata/gc-internal.h>
28 #include <mono/metadata/marshal.h>
29 #include <mono/metadata/runtime.h>
30 #include <mono/io-layer/io-layer.h>
31 #include <mono/metadata/object-internals.h>
32 #include <mono/metadata/mono-debug-debugger.h>
33 #include <mono/utils/monobitset.h>
34 #include <mono/utils/mono-compiler.h>
35 #include <mono/utils/mono-mmap.h>
36 #include <mono/utils/mono-membar.h>
37 #include <mono/utils/mono-time.h>
38 #include <mono/utils/mono-threads.h>
39 #include <mono/utils/hazard-pointer.h>
40 #include <mono/utils/mono-tls.h>
41 #include <mono/utils/atomic.h>
42 #include <mono/utils/mono-memory-model.h>
43
44 #include <mono/metadata/gc-internal.h>
45
46 #ifdef HAVE_SIGNAL_H
47 #include <signal.h>
48 #endif
49
50 #if defined(PLATFORM_ANDROID) && !defined(TARGET_ARM64) && !defined(TARGET_AMD64)
51 #define USE_TKILL_ON_ANDROID 1
52 #endif
53
54 #ifdef PLATFORM_ANDROID
55 #include <errno.h>
56
57 #ifdef USE_TKILL_ON_ANDROID
58 extern int tkill (pid_t tid, int signal);
59 #endif
60 #endif
61
62 /*#define THREAD_DEBUG(a) do { a; } while (0)*/
63 #define THREAD_DEBUG(a)
64 /*#define THREAD_WAIT_DEBUG(a) do { a; } while (0)*/
65 #define THREAD_WAIT_DEBUG(a)
66 /*#define LIBGC_DEBUG(a) do { a; } while (0)*/
67 #define LIBGC_DEBUG(a)
68
69 #define SPIN_TRYLOCK(i) (InterlockedCompareExchange (&(i), 1, 0) == 0)
70 #define SPIN_LOCK(i) do { \
71                                 if (SPIN_TRYLOCK (i)) \
72                                         break; \
73                         } while (1)
74
75 #define SPIN_UNLOCK(i) i = 0
76
77 #define LOCK_THREAD(thread) lock_thread((thread))
78 #define UNLOCK_THREAD(thread) unlock_thread((thread))
79
80 /* Provide this for systems with glib < 2.6 */
81 #ifndef G_GSIZE_FORMAT
82 #   if GLIB_SIZEOF_LONG == 8
83 #       define G_GSIZE_FORMAT "lu"
84 #   else
85 #       define G_GSIZE_FORMAT "u"
86 #   endif
87 #endif
88
89 typedef struct
90 {
91         guint32 (*func)(void *);
92         MonoThread *obj;
93         MonoObject *delegate;
94         void *start_arg;
95 } StartInfo;
96
97 typedef union {
98         gint32 ival;
99         gfloat fval;
100 } IntFloatUnion;
101
102 typedef union {
103         gint64 ival;
104         gdouble fval;
105 } LongDoubleUnion;
106  
107 typedef struct _StaticDataFreeList StaticDataFreeList;
108 struct _StaticDataFreeList {
109         StaticDataFreeList *next;
110         guint32 offset;
111         guint32 size;
112 };
113
114 typedef struct {
115         int idx;
116         int offset;
117         StaticDataFreeList *freelist;
118 } StaticDataInfo;
119
120 /* Number of cached culture objects in the MonoThread->cached_culture_info array
121  * (per-type): we use the first NUM entries for CultureInfo and the last for
122  * UICultureInfo. So the size of the array is really NUM_CACHED_CULTURES * 2.
123  */
124 #define NUM_CACHED_CULTURES 4
125 #define CULTURES_START_IDX 0
126 #define UICULTURES_START_IDX NUM_CACHED_CULTURES
127
128 /* Controls access to the 'threads' hash table */
129 static void mono_threads_lock (void);
130 static void mono_threads_unlock (void);
131 static mono_mutex_t threads_mutex;
132
133 /* Controls access to the 'joinable_threads' hash table */
134 #define joinable_threads_lock() mono_mutex_lock (&joinable_threads_mutex)
135 #define joinable_threads_unlock() mono_mutex_unlock (&joinable_threads_mutex)
136 static mono_mutex_t joinable_threads_mutex;
137
138 /* Holds current status of static data heap */
139 static StaticDataInfo thread_static_info;
140 static StaticDataInfo context_static_info;
141
142 /* The hash of existing threads (key is thread ID, value is
143  * MonoInternalThread*) that need joining before exit
144  */
145 static MonoGHashTable *threads=NULL;
146
147 /* List of app context GC handles.
148  * Added to from ves_icall_System_Runtime_Remoting_Contexts_Context_RegisterContext ().
149  */
150 static GHashTable *contexts = NULL;
151
152 /*
153  * Threads which are starting up and they are not in the 'threads' hash yet.
154  * When handle_store is called for a thread, it will be removed from this hash table.
155  * Protected by mono_threads_lock ().
156  */
157 static MonoGHashTable *threads_starting_up = NULL;
158
159 /* The TLS key that holds the MonoObject assigned to each thread */
160 static MonoNativeTlsKey current_object_key;
161
162 /* Contains tids */
163 /* Protected by the threads lock */
164 static GHashTable *joinable_threads;
165 static int joinable_thread_count;
166
167 #ifdef MONO_HAVE_FAST_TLS
168 /* we need to use both the Tls* functions and __thread because
169  * the gc needs to see all the threads 
170  */
171 MONO_FAST_TLS_DECLARE(tls_current_object);
172 #define SET_CURRENT_OBJECT(x) do { \
173         MONO_FAST_TLS_SET (tls_current_object, x); \
174         mono_native_tls_set_value (current_object_key, x); \
175 } while (FALSE)
176 #define GET_CURRENT_OBJECT() ((MonoInternalThread*) MONO_FAST_TLS_GET (tls_current_object))
177 #else
178 #define SET_CURRENT_OBJECT(x) mono_native_tls_set_value (current_object_key, x)
179 #define GET_CURRENT_OBJECT() (MonoInternalThread*) mono_native_tls_get_value (current_object_key)
180 #endif
181
182 /* function called at thread start */
183 static MonoThreadStartCB mono_thread_start_cb = NULL;
184
185 /* function called at thread attach */
186 static MonoThreadAttachCB mono_thread_attach_cb = NULL;
187
188 /* function called at thread cleanup */
189 static MonoThreadCleanupFunc mono_thread_cleanup_fn = NULL;
190
191 /* function called to notify the runtime about a pending exception on the current thread */
192 static MonoThreadNotifyPendingExcFunc mono_thread_notify_pending_exc_fn = NULL;
193
194 /* The default stack size for each thread */
195 static guint32 default_stacksize = 0;
196 #define default_stacksize_for_thread(thread) ((thread)->stack_size? (thread)->stack_size: default_stacksize)
197
198 static void thread_adjust_static_data (MonoInternalThread *thread);
199 static void context_adjust_static_data (MonoAppContext *ctx);
200 static void mono_free_static_data (gpointer* static_data);
201 static void mono_init_static_data_info (StaticDataInfo *static_data);
202 static guint32 mono_alloc_static_data_slot (StaticDataInfo *static_data, guint32 size, guint32 align);
203 static gboolean mono_thread_resume (MonoInternalThread* thread);
204 static void abort_thread_internal (MonoInternalThread *thread, gboolean can_raise_exception, gboolean install_async_abort);
205 static void suspend_thread_internal (MonoInternalThread *thread, gboolean interrupt);
206 static void self_suspend_internal (MonoInternalThread *thread);
207 static gboolean resume_thread_internal (MonoInternalThread *thread);
208
209 static MonoException* mono_thread_execute_interruption ();
210 static void ref_stack_destroy (gpointer rs);
211
212 /* Spin lock for InterlockedXXX 64 bit functions */
213 #define mono_interlocked_lock() mono_mutex_lock (&interlocked_mutex)
214 #define mono_interlocked_unlock() mono_mutex_unlock (&interlocked_mutex)
215 static mono_mutex_t interlocked_mutex;
216
217 /* global count of thread interruptions requested */
218 static gint32 thread_interruption_requested = 0;
219
220 /* Event signaled when a thread changes its background mode */
221 static HANDLE background_change_event;
222
223 static gboolean shutting_down = FALSE;
224
225 static gint32 managed_thread_id_counter = 0;
226
227 static void
228 mono_threads_lock (void)
229 {
230         MONO_TRY_BLOCKING;
231         mono_locks_acquire (&threads_mutex, ThreadsLock);
232         MONO_FINISH_TRY_BLOCKING;
233 }
234
235 static void
236 mono_threads_unlock (void)
237 {
238         mono_locks_release (&threads_mutex, ThreadsLock);
239 }
240
241
242 static guint32
243 get_next_managed_thread_id (void)
244 {
245         return InterlockedIncrement (&managed_thread_id_counter);
246 }
247
248 MonoNativeTlsKey
249 mono_thread_get_tls_key (void)
250 {
251         return current_object_key;
252 }
253
254 gint32
255 mono_thread_get_tls_offset (void)
256 {
257         int offset;
258         MONO_THREAD_VAR_OFFSET (tls_current_object,offset);
259         return offset;
260 }
261
262 static inline MonoNativeThreadId
263 thread_get_tid (MonoInternalThread *thread)
264 {
265         /* We store the tid as a guint64 to keep the object layout constant between platforms */
266         return MONO_UINT_TO_NATIVE_THREAD_ID (thread->tid);
267 }
268
269 /* handle_store() and handle_remove() manage the array of threads that
270  * still need to be waited for when the main thread exits.
271  *
272  * If handle_store() returns FALSE the thread must not be started
273  * because Mono is shutting down.
274  */
275 static gboolean handle_store(MonoThread *thread, gboolean force_attach)
276 {
277         mono_threads_lock ();
278
279         THREAD_DEBUG (g_message ("%s: thread %p ID %"G_GSIZE_FORMAT, __func__, thread, (gsize)thread->internal_thread->tid));
280
281         if (threads_starting_up)
282                 mono_g_hash_table_remove (threads_starting_up, thread);
283
284         if (shutting_down && !force_attach) {
285                 mono_threads_unlock ();
286                 return FALSE;
287         }
288
289         if(threads==NULL) {
290                 MONO_GC_REGISTER_ROOT_FIXED (threads, MONO_ROOT_SOURCE_THREADING, "threads table");
291                 threads=mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_VALUE_GC, MONO_ROOT_SOURCE_THREADING, "threads table");
292         }
293
294         /* We don't need to duplicate thread->handle, because it is
295          * only closed when the thread object is finalized by the GC.
296          */
297         g_assert (thread->internal_thread);
298         mono_g_hash_table_insert(threads, (gpointer)(gsize)(thread->internal_thread->tid),
299                                  thread->internal_thread);
300
301         mono_threads_unlock ();
302
303         return TRUE;
304 }
305
306 static gboolean handle_remove(MonoInternalThread *thread)
307 {
308         gboolean ret;
309         gsize tid = thread->tid;
310
311         THREAD_DEBUG (g_message ("%s: thread ID %"G_GSIZE_FORMAT, __func__, tid));
312
313         mono_threads_lock ();
314
315         if (threads) {
316                 /* We have to check whether the thread object for the
317                  * tid is still the same in the table because the
318                  * thread might have been destroyed and the tid reused
319                  * in the meantime, in which case the tid would be in
320                  * the table, but with another thread object.
321                  */
322                 if (mono_g_hash_table_lookup (threads, (gpointer)tid) == thread) {
323                         mono_g_hash_table_remove (threads, (gpointer)tid);
324                         ret = TRUE;
325                 } else {
326                         ret = FALSE;
327                 }
328         }
329         else
330                 ret = FALSE;
331         
332         mono_threads_unlock ();
333
334         /* Don't close the handle here, wait for the object finalizer
335          * to do it. Otherwise, the following race condition applies:
336          *
337          * 1) Thread exits (and handle_remove() closes the handle)
338          *
339          * 2) Some other handle is reassigned the same slot
340          *
341          * 3) Another thread tries to join the first thread, and
342          * blocks waiting for the reassigned handle to be signalled
343          * (which might never happen).  This is possible, because the
344          * thread calling Join() still has a reference to the first
345          * thread's object.
346          */
347         return ret;
348 }
349
350 static void ensure_synch_cs_set (MonoInternalThread *thread)
351 {
352         mono_mutex_t *synch_cs;
353
354         if (thread->synch_cs != NULL) {
355                 return;
356         }
357
358         synch_cs = g_new0 (mono_mutex_t, 1);
359         mono_mutex_init_recursive (synch_cs);
360
361         if (InterlockedCompareExchangePointer ((gpointer *)&thread->synch_cs,
362                                                synch_cs, NULL) != NULL) {
363                 /* Another thread must have installed this CS */
364                 mono_mutex_destroy (synch_cs);
365                 g_free (synch_cs);
366         }
367 }
368
369 static inline void
370 lock_thread (MonoInternalThread *thread)
371 {
372         if (!thread->synch_cs)
373                 ensure_synch_cs_set (thread);
374
375         g_assert (thread->synch_cs);
376
377         MONO_TRY_BLOCKING;
378         mono_mutex_lock (thread->synch_cs);
379         MONO_FINISH_TRY_BLOCKING;
380 }
381
382 static inline void
383 unlock_thread (MonoInternalThread *thread)
384 {
385         mono_mutex_unlock (thread->synch_cs);
386 }
387
388 /*
389  * NOTE: this function can be called also for threads different from the current one:
390  * make sure no code called from it will ever assume it is run on the thread that is
391  * getting cleaned up.
392  */
393 static void thread_cleanup (MonoInternalThread *thread)
394 {
395         g_assert (thread != NULL);
396
397         if (thread->abort_state_handle) {
398                 mono_gchandle_free (thread->abort_state_handle);
399                 thread->abort_state_handle = 0;
400         }
401         thread->abort_exc = NULL;
402         thread->current_appcontext = NULL;
403
404         /*
405          * This is necessary because otherwise we might have
406          * cross-domain references which will not get cleaned up when
407          * the target domain is unloaded.
408          */
409         if (thread->cached_culture_info) {
410                 int i;
411                 for (i = 0; i < NUM_CACHED_CULTURES * 2; ++i)
412                         mono_array_set (thread->cached_culture_info, MonoObject*, i, NULL);
413         }
414
415         /*
416          * thread->synch_cs can be NULL if this was called after
417          * ves_icall_System_Threading_InternalThread_Thread_free_internal.
418          * This can happen only during shutdown.
419          * The shutting_down flag is not always set, so we can't assert on it.
420          */
421         if (thread->synch_cs)
422                 LOCK_THREAD (thread);
423
424         thread->state |= ThreadState_Stopped;
425         thread->state &= ~ThreadState_Background;
426
427         if (thread->synch_cs)
428                 UNLOCK_THREAD (thread);
429
430         /*
431         An interruption request has leaked to cleanup. Adjust the global counter.
432
433         This can happen is the abort source thread finds the abortee (this) thread
434         in unmanaged code. If this thread never trips back to managed code or check
435         the local flag it will be left set and positively unbalance the global counter.
436         
437         Leaving the counter unbalanced will cause a performance degradation since all threads
438         will now keep checking their local flags all the time.
439         */
440         if (InterlockedExchange (&thread->interruption_requested, 0))
441                 InterlockedDecrement (&thread_interruption_requested);
442
443         /* if the thread is not in the hash it has been removed already */
444         if (!handle_remove (thread)) {
445                 if (thread == mono_thread_internal_current ()) {
446                         mono_domain_unset ();
447                         mono_memory_barrier ();
448                 }
449                 /* This needs to be called even if handle_remove () fails */
450                 if (mono_thread_cleanup_fn)
451                         mono_thread_cleanup_fn (thread_get_tid (thread));
452                 return;
453         }
454         mono_release_type_locks (thread);
455
456         mono_profiler_thread_end (thread->tid);
457
458         if (thread == mono_thread_internal_current ()) {
459                 /*
460                  * This will signal async signal handlers that the thread has exited.
461                  * The profiler callback needs this to be set, so it cannot be done earlier.
462                  */
463                 mono_domain_unset ();
464                 mono_memory_barrier ();
465         }
466
467         if (thread == mono_thread_internal_current ())
468                 mono_thread_pop_appdomain_ref ();
469
470         thread->cached_culture_info = NULL;
471
472         mono_free_static_data (thread->static_data);
473         thread->static_data = NULL;
474         ref_stack_destroy (thread->appdomain_refs);
475         thread->appdomain_refs = NULL;
476
477         if (mono_thread_cleanup_fn)
478                 mono_thread_cleanup_fn (thread_get_tid (thread));
479
480         if (mono_gc_is_moving ()) {
481                 MONO_GC_UNREGISTER_ROOT (thread->thread_pinning_ref);
482                 thread->thread_pinning_ref = NULL;
483         }
484 }
485
486 /*
487  * A special static data offset (guint32) consists of 3 parts:
488  *
489  * [0]   6-bit index into the array of chunks.
490  * [6]   25-bit offset into the array.
491  * [31]  Bit indicating thread or context static.
492  */
493
494 typedef union {
495         struct {
496 #if G_BYTE_ORDER != G_LITTLE_ENDIAN
497                 guint32 type : 1;
498                 guint32 offset : 25;
499                 guint32 index : 6;
500 #else
501                 guint32 index : 6;
502                 guint32 offset : 25;
503                 guint32 type : 1;
504 #endif
505         } fields;
506         guint32 raw;
507 } SpecialStaticOffset;
508
509 #define SPECIAL_STATIC_OFFSET_TYPE_THREAD 0
510 #define SPECIAL_STATIC_OFFSET_TYPE_CONTEXT 1
511
512 #define MAKE_SPECIAL_STATIC_OFFSET(index, offset, type) \
513         ((SpecialStaticOffset) { .fields = { (index), (offset), (type) } }.raw)
514 #define ACCESS_SPECIAL_STATIC_OFFSET(x,f) \
515         (((SpecialStaticOffset *) &(x))->fields.f)
516
517 static gpointer
518 get_thread_static_data (MonoInternalThread *thread, guint32 offset)
519 {
520         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_THREAD);
521
522         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
523         int off = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
524
525         return ((char *) thread->static_data [idx]) + off;
526 }
527
528 static gpointer
529 get_context_static_data (MonoAppContext *ctx, guint32 offset)
530 {
531         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_CONTEXT);
532
533         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
534         int off = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
535
536         return ((char *) ctx->static_data [idx]) + off;
537 }
538
539 static MonoThread**
540 get_current_thread_ptr_for_domain (MonoDomain *domain, MonoInternalThread *thread)
541 {
542         static MonoClassField *current_thread_field = NULL;
543
544         guint32 offset;
545
546         if (!current_thread_field) {
547                 current_thread_field = mono_class_get_field_from_name (mono_defaults.thread_class, "current_thread");
548                 g_assert (current_thread_field);
549         }
550
551         mono_class_vtable (domain, mono_defaults.thread_class);
552         mono_domain_lock (domain);
553         offset = GPOINTER_TO_UINT (g_hash_table_lookup (domain->special_static_fields, current_thread_field));
554         mono_domain_unlock (domain);
555         g_assert (offset);
556
557         return get_thread_static_data (thread, offset);
558 }
559
560 static void
561 set_current_thread_for_domain (MonoDomain *domain, MonoInternalThread *thread, MonoThread *current)
562 {
563         MonoThread **current_thread_ptr = get_current_thread_ptr_for_domain (domain, thread);
564
565         g_assert (current->obj.vtable->domain == domain);
566
567         g_assert (!*current_thread_ptr);
568         *current_thread_ptr = current;
569 }
570
571 static MonoThread*
572 create_thread_object (MonoDomain *domain)
573 {
574         MonoVTable *vt = mono_class_vtable (domain, mono_defaults.thread_class);
575         return (MonoThread*)mono_gc_alloc_mature (vt);
576 }
577
578 static MonoThread*
579 new_thread_with_internal (MonoDomain *domain, MonoInternalThread *internal)
580 {
581         MonoThread *thread = create_thread_object (domain);
582         MONO_OBJECT_SETREF (thread, internal_thread, internal);
583         return thread;
584 }
585
586 static MonoInternalThread*
587 create_internal_thread (void)
588 {
589         MonoInternalThread *thread;
590         MonoVTable *vt;
591
592         vt = mono_class_vtable (mono_get_root_domain (), mono_defaults.internal_thread_class);
593         thread = (MonoInternalThread*)mono_gc_alloc_mature (vt);
594
595         thread->synch_cs = g_new0 (mono_mutex_t, 1);
596         mono_mutex_init_recursive (thread->synch_cs);
597
598         thread->apartment_state = ThreadApartmentState_Unknown;
599         thread->managed_id = get_next_managed_thread_id ();
600         if (mono_gc_is_moving ()) {
601                 thread->thread_pinning_ref = thread;
602                 MONO_GC_REGISTER_ROOT_PINNING (thread->thread_pinning_ref, MONO_ROOT_SOURCE_THREADING, "thread pinning reference");
603         }
604
605         return thread;
606 }
607
608 static void
609 init_root_domain_thread (MonoInternalThread *thread, MonoThread *candidate)
610 {
611         MonoDomain *domain = mono_get_root_domain ();
612
613         if (!candidate || candidate->obj.vtable->domain != domain)
614                 candidate = new_thread_with_internal (domain, thread);
615         set_current_thread_for_domain (domain, thread, candidate);
616         g_assert (!thread->root_domain_thread);
617         MONO_OBJECT_SETREF (thread, root_domain_thread, candidate);
618 }
619
620 static guint32 WINAPI start_wrapper_internal(void *data)
621 {
622         MonoThreadInfo *info;
623         StartInfo *start_info = (StartInfo *)data;
624         guint32 (*start_func)(void *);
625         void *start_arg;
626         gsize tid;
627         /* 
628          * We don't create a local to hold start_info->obj, so hopefully it won't get pinned during a
629          * GC stack walk.
630          */
631         MonoInternalThread *internal = start_info->obj->internal_thread;
632         MonoObject *start_delegate = start_info->delegate;
633         MonoDomain *domain = start_info->obj->obj.vtable->domain;
634
635         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Start wrapper", __func__, mono_native_thread_id_get ()));
636
637         /* We can be sure start_info->obj->tid and
638          * start_info->obj->handle have been set, because the thread
639          * was created suspended, and these values were set before the
640          * thread resumed
641          */
642
643         info = mono_thread_info_current ();
644         g_assert (info);
645         internal->thread_info = info;
646         internal->small_id = info->small_id;
647
648         tid = internal->tid;
649
650         SET_CURRENT_OBJECT (internal);
651
652         /* Every thread references the appdomain which created it */
653         mono_thread_push_appdomain_ref (domain);
654         
655         if (!mono_domain_set (domain, FALSE)) {
656                 /* No point in raising an appdomain_unloaded exception here */
657                 /* FIXME: Cleanup here */
658                 mono_thread_pop_appdomain_ref ();
659                 return 0;
660         }
661
662         start_func = start_info->func;
663         start_arg = start_info->obj->start_obj;
664         if (!start_arg)
665                 start_arg = start_info->start_arg;
666
667         /* We have to do this here because mono_thread_new_init()
668            requires that root_domain_thread is set up. */
669         thread_adjust_static_data (internal);
670         init_root_domain_thread (internal, start_info->obj);
671
672         /* This MUST be called before any managed code can be
673          * executed, as it calls the callback function that (for the
674          * jit) sets the lmf marker.
675          */
676         mono_thread_new_init (tid, &tid, start_func);
677         internal->stack_ptr = &tid;
678
679         LIBGC_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT",%d) Setting thread stack to %p", __func__, mono_native_thread_id_get (), getpid (), thread->stack_ptr));
680
681         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Setting current_object_key to %p", __func__, mono_native_thread_id_get (), internal));
682
683         /* On 2.0 profile (and higher), set explicitly since state might have been
684            Unknown */
685         if (internal->apartment_state == ThreadApartmentState_Unknown)
686                 internal->apartment_state = ThreadApartmentState_MTA;
687
688         mono_thread_init_apartment_state ();
689
690         if(internal->start_notify!=NULL) {
691                 /* Let the thread that called Start() know we're
692                  * ready
693                  */
694                 ReleaseSemaphore (internal->start_notify, 1, NULL);
695         }
696
697         g_free (start_info);
698         THREAD_DEBUG (g_message ("%s: start_wrapper for %"G_GSIZE_FORMAT, __func__,
699                                                          internal->tid));
700
701         /* 
702          * Call this after calling start_notify, since the profiler callback might want
703          * to lock the thread, and the lock is held by thread_start () which waits for
704          * start_notify.
705          */
706         mono_profiler_thread_start (tid);
707
708         /* if the name was set before starting, we didn't invoke the profiler callback */
709         if (internal->name && (internal->flags & MONO_THREAD_FLAG_NAME_SET)) {
710                 char *tname = g_utf16_to_utf8 (internal->name, internal->name_len, NULL, NULL, NULL);
711                 mono_profiler_thread_name (internal->tid, tname);
712                 g_free (tname);
713         }
714         /* start_func is set only for unmanaged start functions */
715         if (start_func) {
716                 start_func (start_arg);
717         } else {
718                 void *args [1];
719                 g_assert (start_delegate != NULL);
720                 args [0] = start_arg;
721                 /* we may want to handle the exception here. See comment below on unhandled exceptions */
722                 mono_runtime_delegate_invoke (start_delegate, args, NULL);
723         }
724
725         /* If the thread calls ExitThread at all, this remaining code
726          * will not be executed, but the main thread will eventually
727          * call thread_cleanup() on this thread's behalf.
728          */
729
730         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Start wrapper terminating", __func__, mono_native_thread_id_get ()));
731
732         /* Do any cleanup needed for apartment state. This
733          * cannot be done in thread_cleanup since thread_cleanup could be 
734          * called for a thread other than the current thread.
735          * mono_thread_cleanup_apartment_state cleans up apartment
736          * for the current thead */
737         mono_thread_cleanup_apartment_state ();
738
739         thread_cleanup (internal);
740
741         internal->tid = 0;
742
743         /* Remove the reference to the thread object in the TLS data,
744          * so the thread object can be finalized.  This won't be
745          * reached if the thread threw an uncaught exception, so those
746          * thread handles will stay referenced :-( (This is due to
747          * missing support for scanning thread-specific data in the
748          * Boehm GC - the io-layer keeps a GC-visible hash of pointers
749          * to TLS data.)
750          */
751         SET_CURRENT_OBJECT (NULL);
752
753         return(0);
754 }
755
756 static guint32 WINAPI start_wrapper(void *data)
757 {
758         volatile int dummy;
759
760         /* Avoid scanning the frames above this frame during a GC */
761         mono_gc_set_stack_end ((void*)&dummy);
762
763         return start_wrapper_internal (data);
764 }
765
766 /*
767  * create_thread:
768  *
769  *   Common thread creation code.
770  * LOCKING: Acquires the threads lock.
771  */
772 static gboolean
773 create_thread (MonoThread *thread, MonoInternalThread *internal, StartInfo *start_info, gboolean threadpool_thread, guint32 stack_size,
774                            gboolean throw_on_failure)
775 {
776         HANDLE thread_handle;
777         MonoNativeThreadId tid;
778         guint32 create_flags;
779
780         /*
781          * Join joinable threads to prevent running out of threads since the finalizer
782          * thread might be blocked/backlogged.
783          */
784         mono_threads_join_threads ();
785
786         mono_threads_lock ();
787         if (shutting_down) {
788                 g_free (start_info);
789                 mono_threads_unlock ();
790                 return FALSE;
791         }
792         if (threads_starting_up == NULL) {
793                 MONO_GC_REGISTER_ROOT_FIXED (threads_starting_up, MONO_ROOT_SOURCE_THREADING, "starting threads table");
794                 threads_starting_up = mono_g_hash_table_new_type (NULL, NULL, MONO_HASH_KEY_VALUE_GC, MONO_ROOT_SOURCE_THREADING, "starting threads table");
795         }
796         mono_g_hash_table_insert (threads_starting_up, thread, thread);
797         mono_threads_unlock ();
798
799         internal->start_notify = CreateSemaphore (NULL, 0, 0x7fffffff, NULL);
800         if (!internal->start_notify) {
801                 mono_threads_lock ();
802                 mono_g_hash_table_remove (threads_starting_up, thread);
803                 mono_threads_unlock ();
804                 g_warning ("%s: CreateSemaphore error 0x%x", __func__, GetLastError ());
805                 g_free (start_info);
806                 return FALSE;
807         }
808
809         if (stack_size == 0)
810                 stack_size = default_stacksize_for_thread (internal);
811
812         /* Create suspended, so we can do some housekeeping before the thread
813          * starts
814          */
815         create_flags = CREATE_SUSPENDED;
816
817         MONO_PREPARE_BLOCKING;
818         thread_handle = mono_threads_create_thread ((LPTHREAD_START_ROUTINE)start_wrapper, start_info,
819                                                                                                 stack_size, create_flags, &tid);
820         MONO_FINISH_BLOCKING;
821
822         if (thread_handle == NULL) {
823                 /* The thread couldn't be created, so throw an exception */
824                 mono_threads_lock ();
825                 mono_g_hash_table_remove (threads_starting_up, thread);
826                 mono_threads_unlock ();
827                 g_free (start_info);
828                 if (throw_on_failure)
829                         mono_raise_exception (mono_get_exception_execution_engine ("Couldn't create thread"));
830                 else
831                         g_warning ("%s: CreateThread error 0x%x", __func__, GetLastError ());
832                 return FALSE;
833         }
834         THREAD_DEBUG (g_message ("%s: Started thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread_handle));
835
836         internal->handle = thread_handle;
837         internal->tid = MONO_NATIVE_THREAD_ID_TO_UINT (tid);
838
839         internal->threadpool_thread = threadpool_thread;
840         if (threadpool_thread)
841                 mono_thread_set_state (internal, ThreadState_Background);
842
843         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Launching thread %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
844
845         /* Only store the handle when the thread is about to be
846          * launched, to avoid the main thread deadlocking while trying
847          * to clean up a thread that will never be signalled.
848          */
849         if (!handle_store (thread, FALSE))
850                 return FALSE;
851
852         MONO_PREPARE_BLOCKING;
853         mono_thread_info_resume (tid);
854         MONO_FINISH_BLOCKING;
855
856         if (internal->start_notify) {
857                 /*
858                  * Wait for the thread to set up its TLS data etc, so
859                  * theres no potential race condition if someone tries
860                  * to look up the data believing the thread has
861                  * started
862                  */
863                 THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") waiting for thread %p (%"G_GSIZE_FORMAT") to start", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
864
865                 MONO_PREPARE_BLOCKING;
866                 WaitForSingleObjectEx (internal->start_notify, INFINITE, FALSE);
867                 MONO_FINISH_BLOCKING;
868
869                 CloseHandle (internal->start_notify);
870                 internal->start_notify = NULL;
871         }
872
873         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Done launching thread %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), internal, (gsize)internal->tid));
874
875         return TRUE;
876 }
877
878 void mono_thread_new_init (intptr_t tid, gpointer stack_start, gpointer func)
879 {
880         if (mono_thread_start_cb) {
881                 mono_thread_start_cb (tid, stack_start, func);
882         }
883 }
884
885 void mono_threads_set_default_stacksize (guint32 stacksize)
886 {
887         default_stacksize = stacksize;
888 }
889
890 guint32 mono_threads_get_default_stacksize (void)
891 {
892         return default_stacksize;
893 }
894
895 /*
896  * mono_thread_create_internal:
897  *
898  *   ARG should not be a GC reference.
899  */
900 MonoInternalThread*
901 mono_thread_create_internal (MonoDomain *domain, gpointer func, gpointer arg, gboolean threadpool_thread, guint32 stack_size)
902 {
903         MonoThread *thread;
904         MonoInternalThread *internal;
905         StartInfo *start_info;
906         gboolean res;
907
908         thread = create_thread_object (domain);
909         internal = create_internal_thread ();
910         MONO_OBJECT_SETREF (thread, internal_thread, internal);
911
912         start_info = g_new0 (StartInfo, 1);
913         start_info->func = func;
914         start_info->obj = thread;
915         start_info->start_arg = arg;
916
917         res = create_thread (thread, internal, start_info, threadpool_thread, stack_size, TRUE);
918         if (!res)
919                 return NULL;
920
921         /* Check that the managed and unmanaged layout of MonoInternalThread matches */
922         if (mono_check_corlib_version () == NULL)
923                 g_assert (((char*)&internal->unused2 - (char*)internal) == mono_defaults.internal_thread_class->fields [mono_defaults.internal_thread_class->field.count - 1].offset);
924
925         return internal;
926 }
927
928 void
929 mono_thread_create (MonoDomain *domain, gpointer func, gpointer arg)
930 {
931         mono_thread_create_internal (domain, func, arg, FALSE, 0);
932 }
933
934 MonoThread *
935 mono_thread_attach (MonoDomain *domain)
936 {
937         return mono_thread_attach_full (domain, FALSE);
938 }
939
940 MonoThread *
941 mono_thread_attach_full (MonoDomain *domain, gboolean force_attach)
942 {
943         MonoThreadInfo *info;
944         MonoInternalThread *thread;
945         MonoThread *current_thread;
946         HANDLE thread_handle;
947         MonoNativeThreadId tid;
948
949         if ((thread = mono_thread_internal_current ())) {
950                 if (domain != mono_domain_get ())
951                         mono_domain_set (domain, TRUE);
952                 /* Already attached */
953                 return mono_thread_current ();
954         }
955
956         if (!mono_gc_register_thread (&domain)) {
957                 g_error ("Thread %"G_GSIZE_FORMAT" calling into managed code is not registered with the GC. On UNIX, this can be fixed by #include-ing <gc.h> before <pthread.h> in the file containing the thread creation code.", mono_native_thread_id_get ());
958         }
959
960         thread = create_internal_thread ();
961
962         thread_handle = mono_thread_info_open_handle ();
963         g_assert (thread_handle);
964
965         tid=mono_native_thread_id_get ();
966
967         thread->handle = thread_handle;
968         thread->tid = MONO_NATIVE_THREAD_ID_TO_UINT (tid);
969         thread->stack_ptr = &tid;
970
971         THREAD_DEBUG (g_message ("%s: Attached thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread_handle));
972
973         info = mono_thread_info_current ();
974         g_assert (info);
975         thread->thread_info = info;
976         thread->small_id = info->small_id;
977
978         current_thread = new_thread_with_internal (domain, thread);
979
980         if (!handle_store (current_thread, force_attach)) {
981                 /* Mono is shutting down, so just wait for the end */
982                 for (;;)
983                         Sleep (10000);
984         }
985
986         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Setting current_object_key to %p", __func__, mono_native_thread_id_get (), thread));
987
988         SET_CURRENT_OBJECT (thread);
989         mono_domain_set (domain, TRUE);
990
991         thread_adjust_static_data (thread);
992
993         init_root_domain_thread (thread, current_thread);
994         if (domain != mono_get_root_domain ())
995                 set_current_thread_for_domain (domain, thread, current_thread);
996
997
998         if (mono_thread_attach_cb) {
999                 guint8 *staddr;
1000                 size_t stsize;
1001
1002                 mono_thread_info_get_stack_bounds (&staddr, &stsize);
1003
1004                 if (staddr == NULL)
1005                         mono_thread_attach_cb (MONO_NATIVE_THREAD_ID_TO_UINT (tid), &tid);
1006                 else
1007                         mono_thread_attach_cb (MONO_NATIVE_THREAD_ID_TO_UINT (tid), staddr + stsize);
1008         }
1009
1010         // FIXME: Need a separate callback
1011         mono_profiler_thread_start (MONO_NATIVE_THREAD_ID_TO_UINT (tid));
1012
1013         return current_thread;
1014 }
1015
1016 void
1017 mono_thread_detach_internal (MonoInternalThread *thread)
1018 {
1019         g_return_if_fail (thread != NULL);
1020
1021         THREAD_DEBUG (g_message ("%s: mono_thread_detach for %p (%"G_GSIZE_FORMAT")", __func__, thread, (gsize)thread->tid));
1022
1023         thread_cleanup (thread);
1024
1025         SET_CURRENT_OBJECT (NULL);
1026         mono_domain_unset ();
1027
1028         /* Don't need to CloseHandle this thread, even though we took a
1029          * reference in mono_thread_attach (), because the GC will do it
1030          * when the Thread object is finalised.
1031          */
1032 }
1033
1034 void
1035 mono_thread_detach (MonoThread *thread)
1036 {
1037         if (thread)
1038                 mono_thread_detach_internal (thread->internal_thread);
1039 }
1040
1041 /*
1042  * mono_thread_detach_if_exiting:
1043  *
1044  *   Detach the current thread from the runtime if it is exiting, i.e. it is running pthread dtors.
1045  * This should be used at the end of embedding code which calls into managed code, and which
1046  * can be called from pthread dtors, like dealloc: implementations in objective-c.
1047  */
1048 void
1049 mono_thread_detach_if_exiting (void)
1050 {
1051         if (mono_thread_info_is_exiting ()) {
1052                 MonoInternalThread *thread;
1053
1054                 thread = mono_thread_internal_current ();
1055                 if (thread) {
1056                         mono_thread_detach_internal (thread);
1057                         mono_thread_info_detach ();
1058                 }
1059         }
1060 }
1061
1062 void
1063 mono_thread_exit ()
1064 {
1065         MonoInternalThread *thread = mono_thread_internal_current ();
1066
1067         THREAD_DEBUG (g_message ("%s: mono_thread_exit for %p (%"G_GSIZE_FORMAT")", __func__, thread, (gsize)thread->tid));
1068
1069         thread_cleanup (thread);
1070         SET_CURRENT_OBJECT (NULL);
1071         mono_domain_unset ();
1072
1073         /* we could add a callback here for embedders to use. */
1074         if (mono_thread_get_main () && (thread == mono_thread_get_main ()->internal_thread))
1075                 exit (mono_environment_exitcode_get ());
1076         mono_thread_info_exit ();
1077 }
1078
1079 void
1080 ves_icall_System_Threading_Thread_ConstructInternalThread (MonoThread *this_obj)
1081 {
1082         MonoInternalThread *internal = create_internal_thread ();
1083
1084         internal->state = ThreadState_Unstarted;
1085
1086         InterlockedCompareExchangePointer ((gpointer)&this_obj->internal_thread, internal, NULL);
1087 }
1088
1089 HANDLE
1090 ves_icall_System_Threading_Thread_Thread_internal (MonoThread *this_obj,
1091                                                                                                    MonoObject *start)
1092 {
1093         StartInfo *start_info;
1094         MonoInternalThread *internal;
1095         gboolean res;
1096
1097         THREAD_DEBUG (g_message("%s: Trying to start a new thread: this (%p) start (%p)", __func__, this_obj, start));
1098
1099         if (!this_obj->internal_thread)
1100                 ves_icall_System_Threading_Thread_ConstructInternalThread (this_obj);
1101         internal = this_obj->internal_thread;
1102
1103         LOCK_THREAD (internal);
1104
1105         if ((internal->state & ThreadState_Unstarted) == 0) {
1106                 UNLOCK_THREAD (internal);
1107                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has already been started."));
1108                 return NULL;
1109         }
1110
1111         if ((internal->state & ThreadState_Aborted) != 0) {
1112                 UNLOCK_THREAD (internal);
1113                 return this_obj;
1114         }
1115         /* This is freed in start_wrapper */
1116         start_info = g_new0 (StartInfo, 1);
1117         start_info->func = NULL;
1118         start_info->start_arg = NULL;
1119         start_info->delegate = start;
1120         start_info->obj = this_obj;
1121         g_assert (this_obj->obj.vtable->domain == mono_domain_get ());
1122
1123         res = create_thread (this_obj, internal, start_info, FALSE, 0, FALSE);
1124         if (!res) {
1125                 UNLOCK_THREAD (internal);
1126                 return NULL;
1127         }
1128
1129         internal->state &= ~ThreadState_Unstarted;
1130
1131         THREAD_DEBUG (g_message ("%s: Started thread ID %"G_GSIZE_FORMAT" (handle %p)", __func__, tid, thread));
1132
1133         UNLOCK_THREAD (internal);
1134         return internal->handle;
1135 }
1136
1137 /*
1138  * This is called from the finalizer of the internal thread object.
1139  */
1140 void
1141 ves_icall_System_Threading_InternalThread_Thread_free_internal (MonoInternalThread *this_obj, HANDLE thread)
1142 {
1143         THREAD_DEBUG (g_message ("%s: Closing thread %p, handle %p", __func__, this, thread));
1144
1145         /*
1146          * Since threads keep a reference to their thread object while running, by the time this function is called,
1147          * the thread has already exited/detached, i.e. thread_cleanup () has ran. The exception is during shutdown,
1148          * when thread_cleanup () can be called after this.
1149          */
1150         if (thread)
1151                 CloseHandle (thread);
1152
1153         if (this_obj->synch_cs) {
1154                 mono_mutex_t *synch_cs = this_obj->synch_cs;
1155                 this_obj->synch_cs = NULL;
1156                 mono_mutex_destroy (synch_cs);
1157                 g_free (synch_cs);
1158         }
1159
1160         if (this_obj->name) {
1161                 void *name = this_obj->name;
1162                 this_obj->name = NULL;
1163                 g_free (name);
1164         }
1165 }
1166
1167 void
1168 ves_icall_System_Threading_Thread_Sleep_internal(gint32 ms)
1169 {
1170         guint32 res;
1171         MonoInternalThread *thread = mono_thread_internal_current ();
1172
1173         THREAD_DEBUG (g_message ("%s: Sleeping for %d ms", __func__, ms));
1174
1175         mono_thread_current_check_pending_interrupt ();
1176         
1177         while (TRUE) {
1178                 mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1179         
1180                 MONO_PREPARE_BLOCKING;
1181                 res = SleepEx(ms,TRUE);
1182                 MONO_FINISH_BLOCKING;
1183         
1184                 mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1185
1186                 if (res == WAIT_IO_COMPLETION) { /* we might have been interrupted */
1187                         MonoException* exc = mono_thread_execute_interruption ();
1188                         if (exc) {
1189                                 mono_raise_exception (exc);
1190                         } else {
1191                                 // FIXME: !INFINITE
1192                                 if (ms != INFINITE)
1193                                         break;
1194                         }
1195                 } else {
1196                         break;
1197                 }
1198         }
1199 }
1200
1201 void ves_icall_System_Threading_Thread_SpinWait_nop (void)
1202 {
1203 }
1204
1205 gint32
1206 ves_icall_System_Threading_Thread_GetDomainID (void) 
1207 {
1208         return mono_domain_get()->domain_id;
1209 }
1210
1211 gboolean 
1212 ves_icall_System_Threading_Thread_Yield (void)
1213 {
1214         return mono_thread_info_yield ();
1215 }
1216
1217 /*
1218  * mono_thread_get_name:
1219  *
1220  *   Return the name of the thread. NAME_LEN is set to the length of the name.
1221  * Return NULL if the thread has no name. The returned memory is owned by the
1222  * caller.
1223  */
1224 gunichar2*
1225 mono_thread_get_name (MonoInternalThread *this_obj, guint32 *name_len)
1226 {
1227         gunichar2 *res;
1228
1229         LOCK_THREAD (this_obj);
1230         
1231         if (!this_obj->name) {
1232                 *name_len = 0;
1233                 res = NULL;
1234         } else {
1235                 *name_len = this_obj->name_len;
1236                 res = g_new (gunichar2, this_obj->name_len);
1237                 memcpy (res, this_obj->name, sizeof (gunichar2) * this_obj->name_len);
1238         }
1239         
1240         UNLOCK_THREAD (this_obj);
1241
1242         return res;
1243 }
1244
1245 MonoString* 
1246 ves_icall_System_Threading_Thread_GetName_internal (MonoInternalThread *this_obj)
1247 {
1248         MonoString* str;
1249
1250         LOCK_THREAD (this_obj);
1251         
1252         if (!this_obj->name)
1253                 str = NULL;
1254         else
1255                 str = mono_string_new_utf16 (mono_domain_get (), this_obj->name, this_obj->name_len);
1256         
1257         UNLOCK_THREAD (this_obj);
1258         
1259         return str;
1260 }
1261
1262 void 
1263 mono_thread_set_name_internal (MonoInternalThread *this_obj, MonoString *name, gboolean managed)
1264 {
1265         LOCK_THREAD (this_obj);
1266
1267         if ((this_obj->flags & MONO_THREAD_FLAG_NAME_SET) && !this_obj->threadpool_thread) {
1268                 UNLOCK_THREAD (this_obj);
1269                 
1270                 mono_raise_exception (mono_get_exception_invalid_operation ("Thread.Name can only be set once."));
1271                 return;
1272         }
1273         if (this_obj->name) {
1274                 g_free (this_obj->name);
1275                 this_obj->name_len = 0;
1276         }
1277         if (name) {
1278                 this_obj->name = g_new (gunichar2, mono_string_length (name));
1279                 memcpy (this_obj->name, mono_string_chars (name), mono_string_length (name) * 2);
1280                 this_obj->name_len = mono_string_length (name);
1281         }
1282         else
1283                 this_obj->name = NULL;
1284
1285         if (managed)
1286                 this_obj->flags |= MONO_THREAD_FLAG_NAME_SET;
1287         
1288         UNLOCK_THREAD (this_obj);
1289
1290         if (this_obj->name && this_obj->tid) {
1291                 char *tname = mono_string_to_utf8 (name);
1292                 mono_profiler_thread_name (this_obj->tid, tname);
1293                 mono_thread_info_set_name (thread_get_tid (this_obj), tname);
1294                 mono_free (tname);
1295         }
1296 }
1297
1298 void 
1299 ves_icall_System_Threading_Thread_SetName_internal (MonoInternalThread *this_obj, MonoString *name)
1300 {
1301         mono_thread_set_name_internal (this_obj, name, TRUE);
1302 }
1303
1304 int
1305 ves_icall_System_Threading_Thread_GetPriority (MonoThread *this)
1306 {
1307         return ThreadPriority_Lowest;
1308 }
1309
1310 void
1311 ves_icall_System_Threading_Thread_SetPriority (MonoThread *this_obj, int priority)
1312 {
1313 }
1314
1315 /* If the array is already in the requested domain, we just return it,
1316    otherwise we return a copy in that domain. */
1317 static MonoArray*
1318 byte_array_to_domain (MonoArray *arr, MonoDomain *domain)
1319 {
1320         MonoArray *copy;
1321
1322         if (!arr)
1323                 return NULL;
1324
1325         if (mono_object_domain (arr) == domain)
1326                 return arr;
1327
1328         copy = mono_array_new (domain, mono_defaults.byte_class, arr->max_length);
1329         memmove (mono_array_addr (copy, guint8, 0), mono_array_addr (arr, guint8, 0), arr->max_length);
1330         return copy;
1331 }
1332
1333 MonoArray*
1334 ves_icall_System_Threading_Thread_ByteArrayToRootDomain (MonoArray *arr)
1335 {
1336         return byte_array_to_domain (arr, mono_get_root_domain ());
1337 }
1338
1339 MonoArray*
1340 ves_icall_System_Threading_Thread_ByteArrayToCurrentDomain (MonoArray *arr)
1341 {
1342         return byte_array_to_domain (arr, mono_domain_get ());
1343 }
1344
1345 MonoThread *
1346 mono_thread_current (void)
1347 {
1348         MonoDomain *domain = mono_domain_get ();
1349         MonoInternalThread *internal = mono_thread_internal_current ();
1350         MonoThread **current_thread_ptr;
1351
1352         g_assert (internal);
1353         current_thread_ptr = get_current_thread_ptr_for_domain (domain, internal);
1354
1355         if (!*current_thread_ptr) {
1356                 g_assert (domain != mono_get_root_domain ());
1357                 *current_thread_ptr = new_thread_with_internal (domain, internal);
1358         }
1359         return *current_thread_ptr;
1360 }
1361
1362 MonoInternalThread*
1363 mono_thread_internal_current (void)
1364 {
1365         MonoInternalThread *res = GET_CURRENT_OBJECT ();
1366         THREAD_DEBUG (g_message ("%s: returning %p", __func__, res));
1367         return res;
1368 }
1369
1370 gboolean
1371 ves_icall_System_Threading_Thread_Join_internal(MonoThread *this_obj, int ms)
1372 {
1373         MonoInternalThread *thread = this_obj->internal_thread;
1374         HANDLE handle = thread->handle;
1375         MonoInternalThread *cur_thread = mono_thread_internal_current ();
1376         gboolean ret;
1377
1378         mono_thread_current_check_pending_interrupt ();
1379
1380         LOCK_THREAD (thread);
1381         
1382         if ((thread->state & ThreadState_Unstarted) != 0) {
1383                 UNLOCK_THREAD (thread);
1384                 
1385                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started."));
1386                 return FALSE;
1387         }
1388
1389         UNLOCK_THREAD (thread);
1390
1391         if(ms== -1) {
1392                 ms=INFINITE;
1393         }
1394         THREAD_DEBUG (g_message ("%s: joining thread handle %p, %d ms", __func__, handle, ms));
1395         
1396         mono_thread_set_state (cur_thread, ThreadState_WaitSleepJoin);
1397
1398         MONO_PREPARE_BLOCKING;
1399         ret=WaitForSingleObjectEx (handle, ms, TRUE);
1400         MONO_FINISH_BLOCKING;
1401
1402         mono_thread_clr_state (cur_thread, ThreadState_WaitSleepJoin);
1403         
1404         if(ret==WAIT_OBJECT_0) {
1405                 THREAD_DEBUG (g_message ("%s: join successful", __func__));
1406
1407                 return(TRUE);
1408         }
1409         
1410         THREAD_DEBUG (g_message ("%s: join failed", __func__));
1411
1412         return(FALSE);
1413 }
1414
1415 static gint32
1416 mono_wait_uninterrupted (MonoInternalThread *thread, gboolean multiple, guint32 numhandles, gpointer *handles, gboolean waitall, gint32 ms, gboolean alertable)
1417 {
1418         MonoException *exc;
1419         guint32 ret;
1420         gint64 start;
1421         gint32 diff_ms;
1422         gint32 wait = ms;
1423
1424         start = (ms == -1) ? 0 : mono_100ns_ticks ();
1425         do {
1426                 MONO_PREPARE_BLOCKING;
1427                         if (multiple)
1428                         ret = WaitForMultipleObjectsEx (numhandles, handles, waitall, wait, alertable);
1429                 else
1430                         ret = WaitForSingleObjectEx (handles [0], ms, alertable);
1431                 MONO_FINISH_BLOCKING;
1432
1433                 if (ret != WAIT_IO_COMPLETION)
1434                         break;
1435
1436                 exc = mono_thread_execute_interruption ();
1437                 if (exc)
1438                         mono_raise_exception (exc);
1439
1440                 if (ms == -1)
1441                         continue;
1442
1443                 /* Re-calculate ms according to the time passed */
1444                 diff_ms = (gint32)((mono_100ns_ticks () - start) / 10000);
1445                 if (diff_ms >= ms) {
1446                         ret = WAIT_TIMEOUT;
1447                         break;
1448                 }
1449                 wait = ms - diff_ms;
1450         } while (TRUE);
1451         
1452         return ret;
1453 }
1454
1455 /* FIXME: exitContext isnt documented */
1456 gboolean ves_icall_System_Threading_WaitHandle_WaitAll_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext)
1457 {
1458         HANDLE *handles;
1459         guint32 numhandles;
1460         guint32 ret;
1461         guint32 i;
1462         MonoObject *waitHandle;
1463         MonoInternalThread *thread = mono_thread_internal_current ();
1464
1465         /* Do this WaitSleepJoin check before creating objects */
1466         mono_thread_current_check_pending_interrupt ();
1467
1468         /* We fail in managed if the array has more than 64 elements */
1469         numhandles = (guint32)mono_array_length(mono_handles);
1470         handles = g_new0(HANDLE, numhandles);
1471
1472         for(i = 0; i < numhandles; i++) {       
1473                 waitHandle = mono_array_get(mono_handles, MonoObject*, i);
1474                 handles [i] = mono_wait_handle_get_handle ((MonoWaitHandle *) waitHandle);
1475         }
1476         
1477         if(ms== -1) {
1478                 ms=INFINITE;
1479         }
1480
1481         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1482         
1483         ret = mono_wait_uninterrupted (thread, TRUE, numhandles, handles, TRUE, ms, TRUE);
1484
1485         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1486
1487         g_free(handles);
1488
1489         if(ret==WAIT_FAILED) {
1490                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait failed", __func__, mono_native_thread_id_get ()));
1491                 return(FALSE);
1492         } else if(ret==WAIT_TIMEOUT) {
1493                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait timed out", __func__, mono_native_thread_id_get ()));
1494                 return(FALSE);
1495         }
1496         
1497         return(TRUE);
1498 }
1499
1500 /* FIXME: exitContext isnt documented */
1501 gint32 ves_icall_System_Threading_WaitHandle_WaitAny_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext)
1502 {
1503         HANDLE handles [MAXIMUM_WAIT_OBJECTS];
1504         uintptr_t numhandles;
1505         guint32 ret;
1506         guint32 i;
1507         MonoObject *waitHandle;
1508         MonoInternalThread *thread = mono_thread_internal_current ();
1509
1510         /* Do this WaitSleepJoin check before creating objects */
1511         mono_thread_current_check_pending_interrupt ();
1512
1513         numhandles = mono_array_length(mono_handles);
1514         if (numhandles > MAXIMUM_WAIT_OBJECTS)
1515                 return WAIT_FAILED;
1516
1517         for(i = 0; i < numhandles; i++) {       
1518                 waitHandle = mono_array_get(mono_handles, MonoObject*, i);
1519                 handles [i] = mono_wait_handle_get_handle ((MonoWaitHandle *) waitHandle);
1520         }
1521         
1522         if(ms== -1) {
1523                 ms=INFINITE;
1524         }
1525
1526         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1527
1528         ret = mono_wait_uninterrupted (thread, TRUE, numhandles, handles, FALSE, ms, TRUE);
1529
1530         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1531
1532         THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") returning %d", __func__, mono_native_thread_id_get (), ret));
1533
1534         /*
1535          * These need to be here.  See MSDN dos on WaitForMultipleObjects.
1536          */
1537         if (ret >= WAIT_OBJECT_0 && ret <= WAIT_OBJECT_0 + numhandles - 1) {
1538                 return ret - WAIT_OBJECT_0;
1539         }
1540         else if (ret >= WAIT_ABANDONED_0 && ret <= WAIT_ABANDONED_0 + numhandles - 1) {
1541                 return ret - WAIT_ABANDONED_0;
1542         }
1543         else {
1544                 return ret;
1545         }
1546 }
1547
1548 /* FIXME: exitContext isnt documented */
1549 gboolean ves_icall_System_Threading_WaitHandle_WaitOne_internal(MonoObject *this_obj, HANDLE handle, gint32 ms, gboolean exitContext)
1550 {
1551         guint32 ret;
1552         MonoInternalThread *thread = mono_thread_internal_current ();
1553
1554         THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") waiting for %p, %d ms", __func__, mono_native_thread_id_get (), handle, ms));
1555         
1556         if(ms== -1) {
1557                 ms=INFINITE;
1558         }
1559         
1560         mono_thread_current_check_pending_interrupt ();
1561
1562         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1563         
1564         ret = mono_wait_uninterrupted (thread, FALSE, 1, &handle, FALSE, ms, TRUE);
1565         
1566         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1567         
1568         if(ret==WAIT_FAILED) {
1569                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait failed", __func__, mono_native_thread_id_get ()));
1570                 return(FALSE);
1571         } else if(ret==WAIT_TIMEOUT) {
1572                 THREAD_WAIT_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Wait timed out", __func__, mono_native_thread_id_get ()));
1573                 return(FALSE);
1574         }
1575         
1576         return(TRUE);
1577 }
1578
1579 gboolean
1580 ves_icall_System_Threading_WaitHandle_SignalAndWait_Internal (HANDLE toSignal, HANDLE toWait, gint32 ms, gboolean exitContext)
1581 {
1582         guint32 ret;
1583         MonoInternalThread *thread = mono_thread_internal_current ();
1584
1585         if (ms == -1)
1586                 ms = INFINITE;
1587
1588         mono_thread_current_check_pending_interrupt ();
1589
1590         mono_thread_set_state (thread, ThreadState_WaitSleepJoin);
1591         
1592         MONO_PREPARE_BLOCKING;
1593         ret = SignalObjectAndWait (toSignal, toWait, ms, TRUE);
1594         MONO_FINISH_BLOCKING;
1595         
1596         mono_thread_clr_state (thread, ThreadState_WaitSleepJoin);
1597
1598         return  (!(ret == WAIT_TIMEOUT || ret == WAIT_IO_COMPLETION || ret == WAIT_FAILED));
1599 }
1600
1601 HANDLE ves_icall_System_Threading_Mutex_CreateMutex_internal (MonoBoolean owned, MonoString *name, MonoBoolean *created)
1602
1603         HANDLE mutex;
1604         
1605         *created = TRUE;
1606         
1607         if (name == NULL) {
1608                 mutex = CreateMutex (NULL, owned, NULL);
1609         } else {
1610                 mutex = CreateMutex (NULL, owned, mono_string_chars (name));
1611                 
1612                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1613                         *created = FALSE;
1614                 }
1615         }
1616
1617         return(mutex);
1618 }                                                                   
1619
1620 MonoBoolean ves_icall_System_Threading_Mutex_ReleaseMutex_internal (HANDLE handle ) { 
1621         return(ReleaseMutex (handle));
1622 }
1623
1624 HANDLE ves_icall_System_Threading_Mutex_OpenMutex_internal (MonoString *name,
1625                                                             gint32 rights,
1626                                                             gint32 *error)
1627 {
1628         HANDLE ret;
1629         
1630         *error = ERROR_SUCCESS;
1631         
1632         ret = OpenMutex (rights, FALSE, mono_string_chars (name));
1633         if (ret == NULL) {
1634                 *error = GetLastError ();
1635         }
1636         
1637         return(ret);
1638 }
1639
1640
1641 HANDLE ves_icall_System_Threading_Semaphore_CreateSemaphore_internal (gint32 initialCount, gint32 maximumCount, MonoString *name, MonoBoolean *created)
1642
1643         HANDLE sem;
1644         
1645         *created = TRUE;
1646         
1647         if (name == NULL) {
1648                 sem = CreateSemaphore (NULL, initialCount, maximumCount, NULL);
1649         } else {
1650                 sem = CreateSemaphore (NULL, initialCount, maximumCount,
1651                                        mono_string_chars (name));
1652                 
1653                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1654                         *created = FALSE;
1655                 }
1656         }
1657
1658         return(sem);
1659 }                                                                   
1660
1661 gint32 ves_icall_System_Threading_Semaphore_ReleaseSemaphore_internal (HANDLE handle, gint32 releaseCount, MonoBoolean *fail)
1662
1663         gint32 prevcount;
1664         
1665         *fail = !ReleaseSemaphore (handle, releaseCount, &prevcount);
1666
1667         return (prevcount);
1668 }
1669
1670 HANDLE ves_icall_System_Threading_Semaphore_OpenSemaphore_internal (MonoString *name, gint32 rights, gint32 *error)
1671 {
1672         HANDLE ret;
1673         
1674         *error = ERROR_SUCCESS;
1675         
1676         ret = OpenSemaphore (rights, FALSE, mono_string_chars (name));
1677         if (ret == NULL) {
1678                 *error = GetLastError ();
1679         }
1680         
1681         return(ret);
1682 }
1683
1684 HANDLE ves_icall_System_Threading_Events_CreateEvent_internal (MonoBoolean manual, MonoBoolean initial, MonoString *name, MonoBoolean *created)
1685 {
1686         HANDLE event;
1687         
1688         *created = TRUE;
1689
1690         if (name == NULL) {
1691                 event = CreateEvent (NULL, manual, initial, NULL);
1692         } else {
1693                 event = CreateEvent (NULL, manual, initial,
1694                                      mono_string_chars (name));
1695                 
1696                 if (GetLastError () == ERROR_ALREADY_EXISTS) {
1697                         *created = FALSE;
1698                 }
1699         }
1700         
1701         return(event);
1702 }
1703
1704 gboolean ves_icall_System_Threading_Events_SetEvent_internal (HANDLE handle) {
1705         return (SetEvent(handle));
1706 }
1707
1708 gboolean ves_icall_System_Threading_Events_ResetEvent_internal (HANDLE handle) {
1709         return (ResetEvent(handle));
1710 }
1711
1712 void
1713 ves_icall_System_Threading_Events_CloseEvent_internal (HANDLE handle) {
1714         CloseHandle (handle);
1715 }
1716
1717 HANDLE ves_icall_System_Threading_Events_OpenEvent_internal (MonoString *name,
1718                                                              gint32 rights,
1719                                                              gint32 *error)
1720 {
1721         HANDLE ret;
1722         
1723         *error = ERROR_SUCCESS;
1724         
1725         ret = OpenEvent (rights, FALSE, mono_string_chars (name));
1726         if (ret == NULL) {
1727                 *error = GetLastError ();
1728         }
1729         
1730         return(ret);
1731 }
1732
1733 gint32 ves_icall_System_Threading_Interlocked_Increment_Int (gint32 *location)
1734 {
1735         return InterlockedIncrement (location);
1736 }
1737
1738 gint64 ves_icall_System_Threading_Interlocked_Increment_Long (gint64 *location)
1739 {
1740 #if SIZEOF_VOID_P == 4
1741         if (G_UNLIKELY ((size_t)location & 0x7)) {
1742                 gint64 ret;
1743                 mono_interlocked_lock ();
1744                 (*location)++;
1745                 ret = *location;
1746                 mono_interlocked_unlock ();
1747                 return ret;
1748         }
1749 #endif
1750         return InterlockedIncrement64 (location);
1751 }
1752
1753 gint32 ves_icall_System_Threading_Interlocked_Decrement_Int (gint32 *location)
1754 {
1755         return InterlockedDecrement(location);
1756 }
1757
1758 gint64 ves_icall_System_Threading_Interlocked_Decrement_Long (gint64 * location)
1759 {
1760 #if SIZEOF_VOID_P == 4
1761         if (G_UNLIKELY ((size_t)location & 0x7)) {
1762                 gint64 ret;
1763                 mono_interlocked_lock ();
1764                 (*location)--;
1765                 ret = *location;
1766                 mono_interlocked_unlock ();
1767                 return ret;
1768         }
1769 #endif
1770         return InterlockedDecrement64 (location);
1771 }
1772
1773 gint32 ves_icall_System_Threading_Interlocked_Exchange_Int (gint32 *location, gint32 value)
1774 {
1775         return InterlockedExchange(location, value);
1776 }
1777
1778 MonoObject * ves_icall_System_Threading_Interlocked_Exchange_Object (MonoObject **location, MonoObject *value)
1779 {
1780         MonoObject *res;
1781         res = (MonoObject *) InterlockedExchangePointer((gpointer *) location, value);
1782         mono_gc_wbarrier_generic_nostore (location);
1783         return res;
1784 }
1785
1786 gpointer ves_icall_System_Threading_Interlocked_Exchange_IntPtr (gpointer *location, gpointer value)
1787 {
1788         return InterlockedExchangePointer(location, value);
1789 }
1790
1791 gfloat ves_icall_System_Threading_Interlocked_Exchange_Single (gfloat *location, gfloat value)
1792 {
1793         IntFloatUnion val, ret;
1794
1795         val.fval = value;
1796         ret.ival = InterlockedExchange((gint32 *) location, val.ival);
1797
1798         return ret.fval;
1799 }
1800
1801 gint64 
1802 ves_icall_System_Threading_Interlocked_Exchange_Long (gint64 *location, gint64 value)
1803 {
1804 #if SIZEOF_VOID_P == 4
1805         if (G_UNLIKELY ((size_t)location & 0x7)) {
1806                 gint64 ret;
1807                 mono_interlocked_lock ();
1808                 ret = *location;
1809                 *location = value;
1810                 mono_interlocked_unlock ();
1811                 return ret;
1812         }
1813 #endif
1814         return InterlockedExchange64 (location, value);
1815 }
1816
1817 gdouble 
1818 ves_icall_System_Threading_Interlocked_Exchange_Double (gdouble *location, gdouble value)
1819 {
1820         LongDoubleUnion val, ret;
1821
1822         val.fval = value;
1823         ret.ival = (gint64)InterlockedExchange64((gint64 *) location, val.ival);
1824
1825         return ret.fval;
1826 }
1827
1828 gint32 ves_icall_System_Threading_Interlocked_CompareExchange_Int(gint32 *location, gint32 value, gint32 comparand)
1829 {
1830         return InterlockedCompareExchange(location, value, comparand);
1831 }
1832
1833 gint32 ves_icall_System_Threading_Interlocked_CompareExchange_Int_Success(gint32 *location, gint32 value, gint32 comparand, MonoBoolean *success)
1834 {
1835         gint32 r = InterlockedCompareExchange(location, value, comparand);
1836         *success = r == comparand;
1837         return r;
1838 }
1839
1840 MonoObject * ves_icall_System_Threading_Interlocked_CompareExchange_Object (MonoObject **location, MonoObject *value, MonoObject *comparand)
1841 {
1842         MonoObject *res;
1843         res = (MonoObject *) InterlockedCompareExchangePointer((gpointer *) location, value, comparand);
1844         mono_gc_wbarrier_generic_nostore (location);
1845         return res;
1846 }
1847
1848 gpointer ves_icall_System_Threading_Interlocked_CompareExchange_IntPtr(gpointer *location, gpointer value, gpointer comparand)
1849 {
1850         return InterlockedCompareExchangePointer(location, value, comparand);
1851 }
1852
1853 gfloat ves_icall_System_Threading_Interlocked_CompareExchange_Single (gfloat *location, gfloat value, gfloat comparand)
1854 {
1855         IntFloatUnion val, ret, cmp;
1856
1857         val.fval = value;
1858         cmp.fval = comparand;
1859         ret.ival = InterlockedCompareExchange((gint32 *) location, val.ival, cmp.ival);
1860
1861         return ret.fval;
1862 }
1863
1864 gdouble
1865 ves_icall_System_Threading_Interlocked_CompareExchange_Double (gdouble *location, gdouble value, gdouble comparand)
1866 {
1867 #if SIZEOF_VOID_P == 8
1868         LongDoubleUnion val, comp, ret;
1869
1870         val.fval = value;
1871         comp.fval = comparand;
1872         ret.ival = (gint64)InterlockedCompareExchangePointer((gpointer *) location, (gpointer)val.ival, (gpointer)comp.ival);
1873
1874         return ret.fval;
1875 #else
1876         gdouble old;
1877
1878         mono_interlocked_lock ();
1879         old = *location;
1880         if (old == comparand)
1881                 *location = value;
1882         mono_interlocked_unlock ();
1883
1884         return old;
1885 #endif
1886 }
1887
1888 gint64 
1889 ves_icall_System_Threading_Interlocked_CompareExchange_Long (gint64 *location, gint64 value, gint64 comparand)
1890 {
1891 #if SIZEOF_VOID_P == 4
1892         if (G_UNLIKELY ((size_t)location & 0x7)) {
1893                 gint64 old;
1894                 mono_interlocked_lock ();
1895                 old = *location;
1896                 if (old == comparand)
1897                         *location = value;
1898                 mono_interlocked_unlock ();
1899                 return old;
1900         }
1901 #endif
1902         return InterlockedCompareExchange64 (location, value, comparand);
1903 }
1904
1905 MonoObject*
1906 ves_icall_System_Threading_Interlocked_CompareExchange_T (MonoObject **location, MonoObject *value, MonoObject *comparand)
1907 {
1908         MonoObject *res;
1909         res = InterlockedCompareExchangePointer ((gpointer *)location, value, comparand);
1910         mono_gc_wbarrier_generic_nostore (location);
1911         return res;
1912 }
1913
1914 MonoObject*
1915 ves_icall_System_Threading_Interlocked_Exchange_T (MonoObject **location, MonoObject *value)
1916 {
1917         MonoObject *res;
1918         res = InterlockedExchangePointer ((gpointer *)location, value);
1919         mono_gc_wbarrier_generic_nostore (location);
1920         return res;
1921 }
1922
1923 gint32 
1924 ves_icall_System_Threading_Interlocked_Add_Int (gint32 *location, gint32 value)
1925 {
1926         return InterlockedAdd (location, value);
1927 }
1928
1929 gint64 
1930 ves_icall_System_Threading_Interlocked_Add_Long (gint64 *location, gint64 value)
1931 {
1932 #if SIZEOF_VOID_P == 4
1933         if (G_UNLIKELY ((size_t)location & 0x7)) {
1934                 gint64 ret;
1935                 mono_interlocked_lock ();
1936                 *location += value;
1937                 ret = *location;
1938                 mono_interlocked_unlock ();
1939                 return ret;
1940         }
1941 #endif
1942         return InterlockedAdd64 (location, value);
1943 }
1944
1945 gint64 
1946 ves_icall_System_Threading_Interlocked_Read_Long (gint64 *location)
1947 {
1948 #if SIZEOF_VOID_P == 4
1949         if (G_UNLIKELY ((size_t)location & 0x7)) {
1950                 gint64 ret;
1951                 mono_interlocked_lock ();
1952                 ret = *location;
1953                 mono_interlocked_unlock ();
1954                 return ret;
1955         }
1956 #endif
1957         return InterlockedRead64 (location);
1958 }
1959
1960 void
1961 ves_icall_System_Threading_Thread_MemoryBarrier (void)
1962 {
1963         mono_memory_barrier ();
1964 }
1965
1966 void
1967 ves_icall_System_Threading_Thread_ClrState (MonoInternalThread* this, guint32 state)
1968 {
1969         mono_thread_clr_state (this, state);
1970
1971         if (state & ThreadState_Background) {
1972                 /* If the thread changes the background mode, the main thread has to
1973                  * be notified, since it has to rebuild the list of threads to
1974                  * wait for.
1975                  */
1976                 SetEvent (background_change_event);
1977         }
1978 }
1979
1980 void
1981 ves_icall_System_Threading_Thread_SetState (MonoInternalThread* this, guint32 state)
1982 {
1983         mono_thread_set_state (this, state);
1984         
1985         if (state & ThreadState_Background) {
1986                 /* If the thread changes the background mode, the main thread has to
1987                  * be notified, since it has to rebuild the list of threads to
1988                  * wait for.
1989                  */
1990                 SetEvent (background_change_event);
1991         }
1992 }
1993
1994 guint32
1995 ves_icall_System_Threading_Thread_GetState (MonoInternalThread* this)
1996 {
1997         guint32 state;
1998
1999         LOCK_THREAD (this);
2000         
2001         state = this->state;
2002
2003         UNLOCK_THREAD (this);
2004         
2005         return state;
2006 }
2007
2008 void ves_icall_System_Threading_Thread_Interrupt_internal (MonoThread *this_obj)
2009 {
2010         MonoInternalThread *current;
2011         gboolean throw;
2012         MonoInternalThread *thread = this_obj->internal_thread;
2013
2014         LOCK_THREAD (thread);
2015
2016         current = mono_thread_internal_current ();
2017
2018         thread->thread_interrupt_requested = TRUE;
2019         throw = current != thread && (thread->state & ThreadState_WaitSleepJoin);
2020
2021         UNLOCK_THREAD (thread);
2022         
2023         if (throw) {
2024                 abort_thread_internal (thread, TRUE, FALSE);
2025         }
2026 }
2027
2028 void mono_thread_current_check_pending_interrupt ()
2029 {
2030         MonoInternalThread *thread = mono_thread_internal_current ();
2031         gboolean throw = FALSE;
2032
2033         LOCK_THREAD (thread);
2034         
2035         if (thread->thread_interrupt_requested) {
2036                 throw = TRUE;
2037                 thread->thread_interrupt_requested = FALSE;
2038         }
2039         
2040         UNLOCK_THREAD (thread);
2041
2042         if (throw) {
2043                 mono_raise_exception (mono_get_exception_thread_interrupted ());
2044         }
2045 }
2046
2047 void
2048 ves_icall_System_Threading_Thread_Abort (MonoInternalThread *thread, MonoObject *state)
2049 {
2050         LOCK_THREAD (thread);
2051         
2052         if ((thread->state & ThreadState_AbortRequested) != 0 || 
2053                 (thread->state & ThreadState_StopRequested) != 0 ||
2054                 (thread->state & ThreadState_Stopped) != 0)
2055         {
2056                 UNLOCK_THREAD (thread);
2057                 return;
2058         }
2059
2060         if ((thread->state & ThreadState_Unstarted) != 0) {
2061                 thread->state |= ThreadState_Aborted;
2062                 UNLOCK_THREAD (thread);
2063                 return;
2064         }
2065
2066         thread->state |= ThreadState_AbortRequested;
2067         if (thread->abort_state_handle)
2068                 mono_gchandle_free (thread->abort_state_handle);
2069         if (state) {
2070                 thread->abort_state_handle = mono_gchandle_new (state, FALSE);
2071                 g_assert (thread->abort_state_handle);
2072         } else {
2073                 thread->abort_state_handle = 0;
2074         }
2075         thread->abort_exc = NULL;
2076
2077         UNLOCK_THREAD (thread);
2078
2079         THREAD_DEBUG (g_message ("%s: (%"G_GSIZE_FORMAT") Abort requested for %p (%"G_GSIZE_FORMAT")", __func__, mono_native_thread_id_get (), thread, (gsize)thread->tid));
2080
2081         /* During shutdown, we can't wait for other threads */
2082         if (!shutting_down)
2083                 /* Make sure the thread is awake */
2084                 mono_thread_resume (thread);
2085         
2086         abort_thread_internal (thread, TRUE, TRUE);
2087 }
2088
2089 void
2090 ves_icall_System_Threading_Thread_ResetAbort (MonoThread *this_obj)
2091 {
2092         MonoInternalThread *thread = mono_thread_internal_current ();
2093         gboolean was_aborting;
2094
2095         LOCK_THREAD (thread);
2096         was_aborting = thread->state & ThreadState_AbortRequested;
2097         thread->state &= ~ThreadState_AbortRequested;
2098         UNLOCK_THREAD (thread);
2099
2100         if (!was_aborting) {
2101                 const char *msg = "Unable to reset abort because no abort was requested";
2102                 mono_set_pending_exception (mono_get_exception_thread_state (msg));
2103                 return;
2104         }
2105         thread->abort_exc = NULL;
2106         if (thread->abort_state_handle) {
2107                 mono_gchandle_free (thread->abort_state_handle);
2108                 /* This is actually not necessary - the handle
2109                    only counts if the exception is set */
2110                 thread->abort_state_handle = 0;
2111         }
2112 }
2113
2114 void
2115 mono_thread_internal_reset_abort (MonoInternalThread *thread)
2116 {
2117         LOCK_THREAD (thread);
2118
2119         thread->state &= ~ThreadState_AbortRequested;
2120
2121         if (thread->abort_exc) {
2122                 thread->abort_exc = NULL;
2123                 if (thread->abort_state_handle) {
2124                         mono_gchandle_free (thread->abort_state_handle);
2125                         /* This is actually not necessary - the handle
2126                            only counts if the exception is set */
2127                         thread->abort_state_handle = 0;
2128                 }
2129         }
2130
2131         UNLOCK_THREAD (thread);
2132 }
2133
2134 MonoObject*
2135 ves_icall_System_Threading_Thread_GetAbortExceptionState (MonoThread *this_obj)
2136 {
2137         MonoInternalThread *thread = this_obj->internal_thread;
2138         MonoObject *state, *deserialized = NULL, *exc;
2139         MonoDomain *domain;
2140
2141         if (!thread->abort_state_handle)
2142                 return NULL;
2143
2144         state = mono_gchandle_get_target (thread->abort_state_handle);
2145         g_assert (state);
2146
2147         domain = mono_domain_get ();
2148         if (mono_object_domain (state) == domain)
2149                 return state;
2150
2151         deserialized = mono_object_xdomain_representation (state, domain, &exc);
2152
2153         if (!deserialized) {
2154                 MonoException *invalid_op_exc = mono_get_exception_invalid_operation ("Thread.ExceptionState cannot access an ExceptionState from a different AppDomain");
2155                 if (exc)
2156                         MONO_OBJECT_SETREF (invalid_op_exc, inner_ex, exc);
2157                 mono_set_pending_exception (invalid_op_exc);
2158                 return NULL;
2159         }
2160
2161         return deserialized;
2162 }
2163
2164 static gboolean
2165 mono_thread_suspend (MonoInternalThread *thread)
2166 {
2167         LOCK_THREAD (thread);
2168
2169         if ((thread->state & ThreadState_Unstarted) != 0 || 
2170                 (thread->state & ThreadState_Aborted) != 0 || 
2171                 (thread->state & ThreadState_Stopped) != 0)
2172         {
2173                 UNLOCK_THREAD (thread);
2174                 return FALSE;
2175         }
2176
2177         if ((thread->state & ThreadState_Suspended) != 0 || 
2178                 (thread->state & ThreadState_SuspendRequested) != 0 ||
2179                 (thread->state & ThreadState_StopRequested) != 0) 
2180         {
2181                 UNLOCK_THREAD (thread);
2182                 return TRUE;
2183         }
2184         
2185         thread->state |= ThreadState_SuspendRequested;
2186
2187         UNLOCK_THREAD (thread);
2188
2189         suspend_thread_internal (thread, FALSE);
2190         return TRUE;
2191 }
2192
2193 void
2194 ves_icall_System_Threading_Thread_Suspend (MonoThread *this_obj)
2195 {
2196         if (!mono_thread_suspend (this_obj->internal_thread)) {
2197                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started, or is dead."));
2198                 return;
2199         }
2200 }
2201
2202 static gboolean
2203 mono_thread_resume (MonoInternalThread *thread)
2204 {
2205         LOCK_THREAD (thread);
2206
2207         if ((thread->state & ThreadState_SuspendRequested) != 0) {
2208                 thread->state &= ~ThreadState_SuspendRequested;
2209                 UNLOCK_THREAD (thread);
2210                 return TRUE;
2211         }
2212
2213         if ((thread->state & ThreadState_Suspended) == 0 ||
2214                 (thread->state & ThreadState_Unstarted) != 0 || 
2215                 (thread->state & ThreadState_Aborted) != 0 || 
2216                 (thread->state & ThreadState_Stopped) != 0)
2217         {
2218                 UNLOCK_THREAD (thread);
2219                 return FALSE;
2220         }
2221
2222         return resume_thread_internal (thread);
2223 }
2224
2225 void
2226 ves_icall_System_Threading_Thread_Resume (MonoThread *thread)
2227 {
2228         if (!thread->internal_thread || !mono_thread_resume (thread->internal_thread)) {
2229                 mono_set_pending_exception (mono_get_exception_thread_state ("Thread has not been started, or is dead."));
2230                 return;
2231         }
2232 }
2233
2234 static gboolean
2235 mono_threads_is_critical_method (MonoMethod *method)
2236 {
2237         switch (method->wrapper_type) {
2238         case MONO_WRAPPER_RUNTIME_INVOKE:
2239         case MONO_WRAPPER_XDOMAIN_INVOKE:
2240         case MONO_WRAPPER_XDOMAIN_DISPATCH:     
2241                 return TRUE;
2242         }
2243         return FALSE;
2244 }
2245
2246 static gboolean
2247 find_wrapper (MonoMethod *m, gint no, gint ilo, gboolean managed, gpointer data)
2248 {
2249         if (managed)
2250                 return TRUE;
2251
2252         if (mono_threads_is_critical_method (m)) {
2253                 *((gboolean*)data) = TRUE;
2254                 return TRUE;
2255         }
2256         return FALSE;
2257 }
2258
2259 static gboolean 
2260 is_running_protected_wrapper (void)
2261 {
2262         gboolean found = FALSE;
2263         mono_stack_walk (find_wrapper, &found);
2264         return found;
2265 }
2266
2267 void mono_thread_internal_stop (MonoInternalThread *thread)
2268 {
2269         LOCK_THREAD (thread);
2270
2271         if ((thread->state & ThreadState_StopRequested) != 0 ||
2272                 (thread->state & ThreadState_Stopped) != 0)
2273         {
2274                 UNLOCK_THREAD (thread);
2275                 return;
2276         }
2277         
2278         /* Make sure the thread is awake */
2279         mono_thread_resume (thread);
2280
2281         thread->state |= ThreadState_StopRequested;
2282         thread->state &= ~ThreadState_AbortRequested;
2283         
2284         UNLOCK_THREAD (thread);
2285         
2286         abort_thread_internal (thread, TRUE, TRUE);
2287 }
2288
2289 void mono_thread_stop (MonoThread *thread)
2290 {
2291         mono_thread_internal_stop (thread->internal_thread);
2292 }
2293
2294 gint8
2295 ves_icall_System_Threading_Thread_VolatileRead1 (void *ptr)
2296 {
2297         gint8 tmp;
2298         mono_atomic_load_acquire (tmp, gint8, (volatile gint8 *) ptr);
2299         return tmp;
2300 }
2301
2302 gint16
2303 ves_icall_System_Threading_Thread_VolatileRead2 (void *ptr)
2304 {
2305         gint16 tmp;
2306         mono_atomic_load_acquire (tmp, gint16, (volatile gint16 *) ptr);
2307         return tmp;
2308 }
2309
2310 gint32
2311 ves_icall_System_Threading_Thread_VolatileRead4 (void *ptr)
2312 {
2313         gint32 tmp;
2314         mono_atomic_load_acquire (tmp, gint32, (volatile gint32 *) ptr);
2315         return tmp;
2316 }
2317
2318 gint64
2319 ves_icall_System_Threading_Thread_VolatileRead8 (void *ptr)
2320 {
2321         gint64 tmp;
2322         mono_atomic_load_acquire (tmp, gint64, (volatile gint64 *) ptr);
2323         return tmp;
2324 }
2325
2326 void *
2327 ves_icall_System_Threading_Thread_VolatileReadIntPtr (void *ptr)
2328 {
2329         volatile void *tmp;
2330         mono_atomic_load_acquire (tmp, volatile void *, (volatile void **) ptr);
2331         return (void *) tmp;
2332 }
2333
2334 void *
2335 ves_icall_System_Threading_Thread_VolatileReadObject (void *ptr)
2336 {
2337         volatile MonoObject *tmp;
2338         mono_atomic_load_acquire (tmp, volatile MonoObject *, (volatile MonoObject **) ptr);
2339         return (MonoObject *) tmp;
2340 }
2341
2342 double
2343 ves_icall_System_Threading_Thread_VolatileReadDouble (void *ptr)
2344 {
2345         double tmp;
2346         mono_atomic_load_acquire (tmp, double, (volatile double *) ptr);
2347         return tmp;
2348 }
2349
2350 float
2351 ves_icall_System_Threading_Thread_VolatileReadFloat (void *ptr)
2352 {
2353         float tmp;
2354         mono_atomic_load_acquire (tmp, float, (volatile float *) ptr);
2355         return tmp;
2356 }
2357
2358 gint8
2359 ves_icall_System_Threading_Volatile_Read1 (void *ptr)
2360 {
2361         return InterlockedRead8 (ptr);
2362 }
2363
2364 gint16
2365 ves_icall_System_Threading_Volatile_Read2 (void *ptr)
2366 {
2367         return InterlockedRead16 (ptr);
2368 }
2369
2370 gint32
2371 ves_icall_System_Threading_Volatile_Read4 (void *ptr)
2372 {
2373         return InterlockedRead (ptr);
2374 }
2375
2376 gint64
2377 ves_icall_System_Threading_Volatile_Read8 (void *ptr)
2378 {
2379 #if SIZEOF_VOID_P == 4
2380         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2381                 gint64 val;
2382                 mono_interlocked_lock ();
2383                 val = *(gint64*)ptr;
2384                 mono_interlocked_unlock ();
2385                 return val;
2386         }
2387 #endif
2388         return InterlockedRead64 (ptr);
2389 }
2390
2391 void *
2392 ves_icall_System_Threading_Volatile_ReadIntPtr (void *ptr)
2393 {
2394         return InterlockedReadPointer (ptr);
2395 }
2396
2397 double
2398 ves_icall_System_Threading_Volatile_ReadDouble (void *ptr)
2399 {
2400         LongDoubleUnion u;
2401
2402 #if SIZEOF_VOID_P == 4
2403         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2404                 double val;
2405                 mono_interlocked_lock ();
2406                 val = *(double*)ptr;
2407                 mono_interlocked_unlock ();
2408                 return val;
2409         }
2410 #endif
2411
2412         u.ival = InterlockedRead64 (ptr);
2413
2414         return u.fval;
2415 }
2416
2417 float
2418 ves_icall_System_Threading_Volatile_ReadFloat (void *ptr)
2419 {
2420         IntFloatUnion u;
2421
2422         u.ival = InterlockedRead (ptr);
2423
2424         return u.fval;
2425 }
2426
2427 MonoObject*
2428 ves_icall_System_Threading_Volatile_Read_T (void *ptr)
2429 {
2430         return InterlockedReadPointer (ptr);
2431 }
2432
2433 void
2434 ves_icall_System_Threading_Thread_VolatileWrite1 (void *ptr, gint8 value)
2435 {
2436         mono_atomic_store_release ((volatile gint8 *) ptr, value);
2437 }
2438
2439 void
2440 ves_icall_System_Threading_Thread_VolatileWrite2 (void *ptr, gint16 value)
2441 {
2442         mono_atomic_store_release ((volatile gint16 *) ptr, value);
2443 }
2444
2445 void
2446 ves_icall_System_Threading_Thread_VolatileWrite4 (void *ptr, gint32 value)
2447 {
2448         mono_atomic_store_release ((volatile gint32 *) ptr, value);
2449 }
2450
2451 void
2452 ves_icall_System_Threading_Thread_VolatileWrite8 (void *ptr, gint64 value)
2453 {
2454         mono_atomic_store_release ((volatile gint64 *) ptr, value);
2455 }
2456
2457 void
2458 ves_icall_System_Threading_Thread_VolatileWriteIntPtr (void *ptr, void *value)
2459 {
2460         mono_atomic_store_release ((volatile void **) ptr, value);
2461 }
2462
2463 void
2464 ves_icall_System_Threading_Thread_VolatileWriteObject (void *ptr, MonoObject *value)
2465 {
2466         mono_gc_wbarrier_generic_store_atomic (ptr, value);
2467 }
2468
2469 void
2470 ves_icall_System_Threading_Thread_VolatileWriteDouble (void *ptr, double value)
2471 {
2472         mono_atomic_store_release ((volatile double *) ptr, value);
2473 }
2474
2475 void
2476 ves_icall_System_Threading_Thread_VolatileWriteFloat (void *ptr, float value)
2477 {
2478         mono_atomic_store_release ((volatile float *) ptr, value);
2479 }
2480
2481 void
2482 ves_icall_System_Threading_Volatile_Write1 (void *ptr, gint8 value)
2483 {
2484         InterlockedWrite8 (ptr, value);
2485 }
2486
2487 void
2488 ves_icall_System_Threading_Volatile_Write2 (void *ptr, gint16 value)
2489 {
2490         InterlockedWrite16 (ptr, value);
2491 }
2492
2493 void
2494 ves_icall_System_Threading_Volatile_Write4 (void *ptr, gint32 value)
2495 {
2496         InterlockedWrite (ptr, value);
2497 }
2498
2499 void
2500 ves_icall_System_Threading_Volatile_Write8 (void *ptr, gint64 value)
2501 {
2502 #if SIZEOF_VOID_P == 4
2503         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2504                 mono_interlocked_lock ();
2505                 *(gint64*)ptr = value;
2506                 mono_interlocked_unlock ();
2507                 return;
2508         }
2509 #endif
2510
2511         InterlockedWrite64 (ptr, value);
2512 }
2513
2514 void
2515 ves_icall_System_Threading_Volatile_WriteIntPtr (void *ptr, void *value)
2516 {
2517         InterlockedWritePointer (ptr, value);
2518 }
2519
2520 void
2521 ves_icall_System_Threading_Volatile_WriteDouble (void *ptr, double value)
2522 {
2523         LongDoubleUnion u;
2524
2525 #if SIZEOF_VOID_P == 4
2526         if (G_UNLIKELY ((size_t)ptr & 0x7)) {
2527                 mono_interlocked_lock ();
2528                 *(double*)ptr = value;
2529                 mono_interlocked_unlock ();
2530                 return;
2531         }
2532 #endif
2533
2534         u.fval = value;
2535
2536         InterlockedWrite64 (ptr, u.ival);
2537 }
2538
2539 void
2540 ves_icall_System_Threading_Volatile_WriteFloat (void *ptr, float value)
2541 {
2542         IntFloatUnion u;
2543
2544         u.fval = value;
2545
2546         InterlockedWrite (ptr, u.ival);
2547 }
2548
2549 void
2550 ves_icall_System_Threading_Volatile_Write_T (void *ptr, MonoObject *value)
2551 {
2552         mono_gc_wbarrier_generic_store_atomic (ptr, value);
2553 }
2554
2555 void
2556 ves_icall_System_Runtime_Remoting_Contexts_Context_RegisterContext (MonoAppContext *ctx)
2557 {
2558         mono_threads_lock ();
2559
2560         //g_print ("Registering context %d in domain %d\n", ctx->context_id, ctx->domain_id);
2561
2562         if (!contexts)
2563                 contexts = g_hash_table_new (NULL, NULL);
2564
2565         context_adjust_static_data (ctx);
2566         gpointer gch = GUINT_TO_POINTER (mono_gchandle_new_weakref (&ctx->obj, FALSE));
2567         g_hash_table_insert (contexts, gch, gch);
2568
2569         mono_threads_unlock ();
2570
2571         mono_profiler_context_loaded (ctx);
2572 }
2573
2574 void
2575 ves_icall_System_Runtime_Remoting_Contexts_Context_ReleaseContext (MonoAppContext *ctx)
2576 {
2577         /*
2578          * NOTE: Since finalizers are unreliable for the purposes of ensuring
2579          * cleanup in exceptional circumstances, we don't actually do any
2580          * cleanup work here. We instead do this when we iterate the `contexts`
2581          * hash table. The only purpose of this finalizer, at the moment, is to
2582          * notify the profiler.
2583          */
2584
2585         //g_print ("Releasing context %d in domain %d\n", ctx->context_id, ctx->domain_id);
2586
2587         mono_profiler_context_unloaded (ctx);
2588 }
2589
2590 void
2591 mono_thread_init_tls (void)
2592 {
2593         MONO_FAST_TLS_INIT (tls_current_object);
2594         mono_native_tls_alloc (&current_object_key, NULL);
2595 }
2596
2597 void mono_thread_init (MonoThreadStartCB start_cb,
2598                        MonoThreadAttachCB attach_cb)
2599 {
2600         mono_mutex_init_recursive(&threads_mutex);
2601         mono_mutex_init_recursive(&interlocked_mutex);
2602         mono_mutex_init_recursive(&joinable_threads_mutex);
2603         
2604         background_change_event = CreateEvent (NULL, TRUE, FALSE, NULL);
2605         g_assert(background_change_event != NULL);
2606         
2607         mono_init_static_data_info (&thread_static_info);
2608         mono_init_static_data_info (&context_static_info);
2609
2610         THREAD_DEBUG (g_message ("%s: Allocated current_object_key %d", __func__, current_object_key));
2611
2612         mono_thread_start_cb = start_cb;
2613         mono_thread_attach_cb = attach_cb;
2614
2615         /* Get a pseudo handle to the current process.  This is just a
2616          * kludge so that wapi can build a process handle if needed.
2617          * As a pseudo handle is returned, we don't need to clean
2618          * anything up.
2619          */
2620         GetCurrentProcess ();
2621 }
2622
2623 void mono_thread_cleanup (void)
2624 {
2625 #if !defined(HOST_WIN32) && !defined(RUN_IN_SUBTHREAD)
2626         MonoThreadInfo *info;
2627
2628         /* The main thread must abandon any held mutexes (particularly
2629          * important for named mutexes as they are shared across
2630          * processes, see bug 74680.)  This will happen when the
2631          * thread exits, but if it's not running in a subthread it
2632          * won't exit in time.
2633          */
2634         info = mono_thread_info_current ();
2635         wapi_thread_handle_set_exited (info->handle, mono_environment_exitcode_get ());
2636 #endif
2637
2638 #if 0
2639         /* This stuff needs more testing, it seems one of these
2640          * critical sections can be locked when mono_thread_cleanup is
2641          * called.
2642          */
2643         mono_mutex_destroy (&threads_mutex);
2644         mono_mutex_destroy (&interlocked_mutex);
2645         mono_mutex_destroy (&delayed_free_table_mutex);
2646         mono_mutex_destroy (&small_id_mutex);
2647         CloseHandle (background_change_event);
2648 #endif
2649
2650         mono_native_tls_free (current_object_key);
2651 }
2652
2653 void
2654 mono_threads_install_cleanup (MonoThreadCleanupFunc func)
2655 {
2656         mono_thread_cleanup_fn = func;
2657 }
2658
2659 void
2660 mono_thread_set_manage_callback (MonoThread *thread, MonoThreadManageCallback func)
2661 {
2662         thread->internal_thread->manage_callback = func;
2663 }
2664
2665 void mono_threads_install_notify_pending_exc (MonoThreadNotifyPendingExcFunc func)
2666 {
2667         mono_thread_notify_pending_exc_fn = func;
2668 }
2669
2670 G_GNUC_UNUSED
2671 static void print_tids (gpointer key, gpointer value, gpointer user)
2672 {
2673         /* GPOINTER_TO_UINT breaks horribly if sizeof(void *) >
2674          * sizeof(uint) and a cast to uint would overflow
2675          */
2676         /* Older versions of glib don't have G_GSIZE_FORMAT, so just
2677          * print this as a pointer.
2678          */
2679         g_message ("Waiting for: %p", key);
2680 }
2681
2682 struct wait_data 
2683 {
2684         HANDLE handles[MAXIMUM_WAIT_OBJECTS];
2685         MonoInternalThread *threads[MAXIMUM_WAIT_OBJECTS];
2686         guint32 num;
2687 };
2688
2689 static void wait_for_tids (struct wait_data *wait, guint32 timeout)
2690 {
2691         guint32 i, ret;
2692         
2693         THREAD_DEBUG (g_message("%s: %d threads to wait for in this batch", __func__, wait->num));
2694
2695         MONO_PREPARE_BLOCKING;
2696         ret=WaitForMultipleObjectsEx(wait->num, wait->handles, TRUE, timeout, TRUE);
2697         MONO_FINISH_BLOCKING;
2698
2699         if(ret==WAIT_FAILED) {
2700                 /* See the comment in build_wait_tids() */
2701                 THREAD_DEBUG (g_message ("%s: Wait failed", __func__));
2702                 return;
2703         }
2704         
2705         for(i=0; i<wait->num; i++)
2706                 CloseHandle (wait->handles[i]);
2707
2708         if (ret == WAIT_TIMEOUT)
2709                 return;
2710
2711         for(i=0; i<wait->num; i++) {
2712                 gsize tid = wait->threads[i]->tid;
2713
2714                 /*
2715                  * On !win32, when the thread handle becomes signalled, it just means the thread has exited user code,
2716                  * it can still run io-layer etc. code. So wait for it to really exit.
2717                  * FIXME: This won't join threads which are not in the joinable_hash yet.
2718                  */
2719                 mono_thread_join ((gpointer)tid);
2720
2721                 mono_threads_lock ();
2722                 if(mono_g_hash_table_lookup (threads, (gpointer)tid)!=NULL) {
2723                         /* This thread must have been killed, because
2724                          * it hasn't cleaned itself up. (It's just
2725                          * possible that the thread exited before the
2726                          * parent thread had a chance to store the
2727                          * handle, and now there is another pointer to
2728                          * the already-exited thread stored.  In this
2729                          * case, we'll just get two
2730                          * mono_profiler_thread_end() calls for the
2731                          * same thread.)
2732                          */
2733         
2734                         mono_threads_unlock ();
2735                         THREAD_DEBUG (g_message ("%s: cleaning up after thread %p (%"G_GSIZE_FORMAT")", __func__, wait->threads[i], tid));
2736                         thread_cleanup (wait->threads[i]);
2737                 } else {
2738                         mono_threads_unlock ();
2739                 }
2740         }
2741 }
2742
2743 static void wait_for_tids_or_state_change (struct wait_data *wait, guint32 timeout)
2744 {
2745         guint32 i, ret, count;
2746         
2747         THREAD_DEBUG (g_message("%s: %d threads to wait for in this batch", __func__, wait->num));
2748
2749         /* Add the thread state change event, so it wakes up if a thread changes
2750          * to background mode.
2751          */
2752         count = wait->num;
2753         if (count < MAXIMUM_WAIT_OBJECTS) {
2754                 wait->handles [count] = background_change_event;
2755                 count++;
2756         }
2757
2758         MONO_PREPARE_BLOCKING;
2759         ret=WaitForMultipleObjectsEx (count, wait->handles, FALSE, timeout, TRUE);
2760         MONO_FINISH_BLOCKING;
2761
2762         if(ret==WAIT_FAILED) {
2763                 /* See the comment in build_wait_tids() */
2764                 THREAD_DEBUG (g_message ("%s: Wait failed", __func__));
2765                 return;
2766         }
2767         
2768         for(i=0; i<wait->num; i++)
2769                 CloseHandle (wait->handles[i]);
2770
2771         if (ret == WAIT_TIMEOUT)
2772                 return;
2773         
2774         if (ret < wait->num) {
2775                 gsize tid = wait->threads[ret]->tid;
2776                 mono_threads_lock ();
2777                 if (mono_g_hash_table_lookup (threads, (gpointer)tid)!=NULL) {
2778                         /* See comment in wait_for_tids about thread cleanup */
2779                         mono_threads_unlock ();
2780                         THREAD_DEBUG (g_message ("%s: cleaning up after thread %"G_GSIZE_FORMAT, __func__, tid));
2781                         thread_cleanup (wait->threads [ret]);
2782                 } else
2783                         mono_threads_unlock ();
2784         }
2785 }
2786
2787 static void build_wait_tids (gpointer key, gpointer value, gpointer user)
2788 {
2789         struct wait_data *wait=(struct wait_data *)user;
2790
2791         if(wait->num<MAXIMUM_WAIT_OBJECTS) {
2792                 HANDLE handle;
2793                 MonoInternalThread *thread=(MonoInternalThread *)value;
2794
2795                 /* Ignore background threads, we abort them later */
2796                 /* Do not lock here since it is not needed and the caller holds threads_lock */
2797                 if (thread->state & ThreadState_Background) {
2798                         THREAD_DEBUG (g_message ("%s: ignoring background thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2799                         return; /* just leave, ignore */
2800                 }
2801                 
2802                 if (mono_gc_is_finalizer_internal_thread (thread)) {
2803                         THREAD_DEBUG (g_message ("%s: ignoring finalizer thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2804                         return;
2805                 }
2806
2807                 if (thread == mono_thread_internal_current ()) {
2808                         THREAD_DEBUG (g_message ("%s: ignoring current thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2809                         return;
2810                 }
2811
2812                 if (mono_thread_get_main () && (thread == mono_thread_get_main ()->internal_thread)) {
2813                         THREAD_DEBUG (g_message ("%s: ignoring main thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2814                         return;
2815                 }
2816
2817                 if (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE) {
2818                         THREAD_DEBUG (g_message ("%s: ignoring thread %" G_GSIZE_FORMAT "with DONT_MANAGE flag set.", __func__, (gsize)thread->tid));
2819                         return;
2820                 }
2821
2822                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
2823                 if (handle == NULL) {
2824                         THREAD_DEBUG (g_message ("%s: ignoring unopenable thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2825                         return;
2826                 }
2827                 
2828                 THREAD_DEBUG (g_message ("%s: Invoking mono_thread_manage callback on thread %p", __func__, thread));
2829                 if ((thread->manage_callback == NULL) || (thread->manage_callback (thread->root_domain_thread) == TRUE)) {
2830                         wait->handles[wait->num]=handle;
2831                         wait->threads[wait->num]=thread;
2832                         wait->num++;
2833
2834                         THREAD_DEBUG (g_message ("%s: adding thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2835                 } else {
2836                         THREAD_DEBUG (g_message ("%s: ignoring (because of callback) thread %"G_GSIZE_FORMAT, __func__, (gsize)thread->tid));
2837                 }
2838                 
2839                 
2840         } else {
2841                 /* Just ignore the rest, we can't do anything with
2842                  * them yet
2843                  */
2844         }
2845 }
2846
2847 static gboolean
2848 remove_and_abort_threads (gpointer key, gpointer value, gpointer user)
2849 {
2850         struct wait_data *wait=(struct wait_data *)user;
2851         MonoNativeThreadId self = mono_native_thread_id_get ();
2852         MonoInternalThread *thread = value;
2853         HANDLE handle;
2854
2855         if (wait->num >= MAXIMUM_WAIT_OBJECTS)
2856                 return FALSE;
2857
2858         /* The finalizer thread is not a background thread */
2859         if (!mono_native_thread_id_equals (thread_get_tid (thread), self)
2860              && (thread->state & ThreadState_Background) != 0
2861              && (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE) == 0
2862         ) {
2863                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
2864                 if (handle == NULL)
2865                         return FALSE;
2866
2867                 /* printf ("A: %d\n", wait->num); */
2868                 wait->handles[wait->num]=thread->handle;
2869                 wait->threads[wait->num]=thread;
2870                 wait->num++;
2871
2872                 THREAD_DEBUG (g_print ("%s: Aborting id: %"G_GSIZE_FORMAT"\n", __func__, (gsize)thread->tid));
2873                 mono_thread_internal_stop (thread);
2874                 return TRUE;
2875         }
2876
2877         return !mono_native_thread_id_equals (thread_get_tid (thread), self)
2878                 && !mono_gc_is_finalizer_internal_thread (thread);
2879 }
2880
2881 /** 
2882  * mono_threads_set_shutting_down:
2883  *
2884  * Is called by a thread that wants to shut down Mono. If the runtime is already
2885  * shutting down, the calling thread is suspended/stopped, and this function never
2886  * returns.
2887  */
2888 void
2889 mono_threads_set_shutting_down (void)
2890 {
2891         MonoInternalThread *current_thread = mono_thread_internal_current ();
2892
2893         mono_threads_lock ();
2894
2895         if (shutting_down) {
2896                 mono_threads_unlock ();
2897
2898                 /* Make sure we're properly suspended/stopped */
2899
2900                 LOCK_THREAD (current_thread);
2901
2902                 if ((current_thread->state & ThreadState_SuspendRequested) ||
2903                     (current_thread->state & ThreadState_AbortRequested) ||
2904                     (current_thread->state & ThreadState_StopRequested)) {
2905                         UNLOCK_THREAD (current_thread);
2906                         mono_thread_execute_interruption ();
2907                 } else {
2908                         current_thread->state |= ThreadState_Stopped;
2909                         UNLOCK_THREAD (current_thread);
2910                 }
2911
2912                 /*since we're killing the thread, unset the current domain.*/
2913                 mono_domain_unset ();
2914
2915                 /* Wake up other threads potentially waiting for us */
2916                 mono_thread_info_exit ();
2917         } else {
2918                 shutting_down = TRUE;
2919
2920                 /* Not really a background state change, but this will
2921                  * interrupt the main thread if it is waiting for all
2922                  * the other threads.
2923                  */
2924                 SetEvent (background_change_event);
2925                 
2926                 mono_threads_unlock ();
2927         }
2928 }
2929
2930 void mono_thread_manage (void)
2931 {
2932         struct wait_data wait_data;
2933         struct wait_data *wait = &wait_data;
2934
2935         memset (wait, 0, sizeof (struct wait_data));
2936         /* join each thread that's still running */
2937         THREAD_DEBUG (g_message ("%s: Joining each running thread...", __func__));
2938         
2939         mono_threads_lock ();
2940         if(threads==NULL) {
2941                 THREAD_DEBUG (g_message("%s: No threads", __func__));
2942                 mono_threads_unlock ();
2943                 return;
2944         }
2945         mono_threads_unlock ();
2946         
2947         do {
2948                 mono_threads_lock ();
2949                 if (shutting_down) {
2950                         /* somebody else is shutting down */
2951                         mono_threads_unlock ();
2952                         break;
2953                 }
2954                 THREAD_DEBUG (g_message ("%s: There are %d threads to join", __func__, mono_g_hash_table_size (threads));
2955                         mono_g_hash_table_foreach (threads, print_tids, NULL));
2956         
2957                 ResetEvent (background_change_event);
2958                 wait->num=0;
2959                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
2960                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
2961                 mono_g_hash_table_foreach (threads, build_wait_tids, wait);
2962                 mono_threads_unlock ();
2963                 if(wait->num>0) {
2964                         /* Something to wait for */
2965                         wait_for_tids_or_state_change (wait, INFINITE);
2966                 }
2967                 THREAD_DEBUG (g_message ("%s: I have %d threads after waiting.", __func__, wait->num));
2968         } while(wait->num>0);
2969
2970         /* Mono is shutting down, so just wait for the end */
2971         if (!mono_runtime_try_shutdown ()) {
2972                 /*FIXME mono_thread_suspend probably should call mono_thread_execute_interruption when self interrupting. */
2973                 mono_thread_suspend (mono_thread_internal_current ());
2974                 mono_thread_execute_interruption ();
2975         }
2976
2977         /* 
2978          * Remove everything but the finalizer thread and self.
2979          * Also abort all the background threads
2980          * */
2981         do {
2982                 mono_threads_lock ();
2983
2984                 wait->num = 0;
2985                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
2986                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
2987                 mono_g_hash_table_foreach_remove (threads, remove_and_abort_threads, wait);
2988
2989                 mono_threads_unlock ();
2990
2991                 THREAD_DEBUG (g_message ("%s: wait->num is now %d", __func__, wait->num));
2992                 if(wait->num>0) {
2993                         /* Something to wait for */
2994                         wait_for_tids (wait, INFINITE);
2995                 }
2996         } while (wait->num > 0);
2997         
2998         /* 
2999          * give the subthreads a chance to really quit (this is mainly needed
3000          * to get correct user and system times from getrusage/wait/time(1)).
3001          * This could be removed if we avoid pthread_detach() and use pthread_join().
3002          */
3003         mono_thread_info_yield ();
3004 }
3005
3006 static void
3007 collect_threads_for_suspend (gpointer key, gpointer value, gpointer user_data)
3008 {
3009         MonoInternalThread *thread = (MonoInternalThread*)value;
3010         struct wait_data *wait = (struct wait_data*)user_data;
3011         HANDLE handle;
3012
3013         /* 
3014          * We try to exclude threads early, to avoid running into the MAXIMUM_WAIT_OBJECTS
3015          * limitation.
3016          * This needs no locking.
3017          */
3018         if ((thread->state & ThreadState_Suspended) != 0 || 
3019                 (thread->state & ThreadState_Stopped) != 0)
3020                 return;
3021
3022         if (wait->num<MAXIMUM_WAIT_OBJECTS) {
3023                 handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
3024                 if (handle == NULL)
3025                         return;
3026
3027                 wait->handles [wait->num] = handle;
3028                 wait->threads [wait->num] = thread;
3029                 wait->num++;
3030         }
3031 }
3032
3033 /*
3034  * mono_thread_suspend_all_other_threads:
3035  *
3036  *  Suspend all managed threads except the finalizer thread and this thread. It is
3037  * not possible to resume them later.
3038  */
3039 void mono_thread_suspend_all_other_threads (void)
3040 {
3041         struct wait_data wait_data;
3042         struct wait_data *wait = &wait_data;
3043         int i;
3044         MonoNativeThreadId self = mono_native_thread_id_get ();
3045         guint32 eventidx = 0;
3046         gboolean starting, finished;
3047
3048         memset (wait, 0, sizeof (struct wait_data));
3049         /*
3050          * The other threads could be in an arbitrary state at this point, i.e.
3051          * they could be starting up, shutting down etc. This means that there could be
3052          * threads which are not even in the threads hash table yet.
3053          */
3054
3055         /* 
3056          * First we set a barrier which will be checked by all threads before they
3057          * are added to the threads hash table, and they will exit if the flag is set.
3058          * This ensures that no threads could be added to the hash later.
3059          * We will use shutting_down as the barrier for now.
3060          */
3061         g_assert (shutting_down);
3062
3063         /*
3064          * We make multiple calls to WaitForMultipleObjects since:
3065          * - we can only wait for MAXIMUM_WAIT_OBJECTS threads
3066          * - some threads could exit without becoming suspended
3067          */
3068         finished = FALSE;
3069         while (!finished) {
3070                 /*
3071                  * Make a copy of the hashtable since we can't do anything with
3072                  * threads while threads_mutex is held.
3073                  */
3074                 wait->num = 0;
3075                 /*We must zero all InternalThread pointers to avoid making the GC unhappy.*/
3076                 memset (wait->threads, 0, MAXIMUM_WAIT_OBJECTS * SIZEOF_VOID_P);
3077                 mono_threads_lock ();
3078                 mono_g_hash_table_foreach (threads, collect_threads_for_suspend, wait);
3079                 mono_threads_unlock ();
3080
3081                 eventidx = 0;
3082                 /* Get the suspended events that we'll be waiting for */
3083                 for (i = 0; i < wait->num; ++i) {
3084                         MonoInternalThread *thread = wait->threads [i];
3085
3086                         if (mono_native_thread_id_equals (thread_get_tid (thread), self)
3087                              || mono_gc_is_finalizer_internal_thread (thread)
3088                              || (thread->flags & MONO_THREAD_FLAG_DONT_MANAGE)
3089                         ) {
3090                                 //CloseHandle (wait->handles [i]);
3091                                 wait->threads [i] = NULL; /* ignore this thread in next loop */
3092                                 continue;
3093                         }
3094
3095                         LOCK_THREAD (thread);
3096
3097                         if ((thread->state & ThreadState_Suspended) != 0 || 
3098                                 (thread->state & ThreadState_StopRequested) != 0 ||
3099                                 (thread->state & ThreadState_Stopped) != 0) {
3100                                 UNLOCK_THREAD (thread);
3101                                 CloseHandle (wait->handles [i]);
3102                                 wait->threads [i] = NULL; /* ignore this thread in next loop */
3103                                 continue;
3104                         }
3105
3106                         ++eventidx;
3107
3108                         /* Convert abort requests into suspend requests */
3109                         if ((thread->state & ThreadState_AbortRequested) != 0)
3110                                 thread->state &= ~ThreadState_AbortRequested;
3111                         
3112                         thread->state |= ThreadState_SuspendRequested;
3113
3114                         UNLOCK_THREAD (thread);
3115
3116                         /* Signal the thread to suspend */
3117                         suspend_thread_internal (thread, TRUE);
3118                 }
3119                 if (eventidx <= 0) {
3120                         /* 
3121                          * If there are threads which are starting up, we wait until they
3122                          * are suspended when they try to register in the threads hash.
3123                          * This is guaranteed to finish, since the threads which can create new
3124                          * threads get suspended after a while.
3125                          * FIXME: The finalizer thread can still create new threads.
3126                          */
3127                         mono_threads_lock ();
3128                         if (threads_starting_up)
3129                                 starting = mono_g_hash_table_size (threads_starting_up) > 0;
3130                         else
3131                                 starting = FALSE;
3132                         mono_threads_unlock ();
3133                         if (starting)
3134                                 Sleep (100);
3135                         else
3136                                 finished = TRUE;
3137                 }
3138         }
3139 }
3140
3141 static gboolean thread_dump_requested;
3142
3143 static G_GNUC_UNUSED gboolean
3144 print_stack_frame_to_string (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
3145 {
3146         GString *p = (GString*)data;
3147         MonoMethod *method = NULL;
3148         if (frame->type == FRAME_TYPE_MANAGED)
3149                 method = mono_jit_info_get_method (frame->ji);
3150
3151         if (method) {
3152                 gchar *location = mono_debug_print_stack_frame (method, frame->native_offset, frame->domain);
3153                 g_string_append_printf (p, "  %s\n", location);
3154                 g_free (location);
3155         } else
3156                 g_string_append_printf (p, "  at <unknown> <0x%05x>\n", frame->native_offset);
3157
3158         return FALSE;
3159 }
3160
3161 static SuspendThreadResult
3162 print_thread_dump (MonoThreadInfo *info, gpointer ud)
3163 {
3164         MonoInternalThread *thread = ud;
3165         GString* text = g_string_new (0);
3166         char *name;
3167         GError *error = NULL;
3168
3169         if (thread->name) {
3170                 name = g_utf16_to_utf8 (thread->name, thread->name_len, NULL, NULL, &error);
3171                 g_assert (!error);
3172                 g_string_append_printf (text, "\n\"%s\"", name);
3173                 g_free (name);
3174         }
3175         else if (thread->threadpool_thread)
3176                 g_string_append (text, "\n\"<threadpool thread>\"");
3177         else
3178                 g_string_append (text, "\n\"<unnamed thread>\"");
3179
3180 #if 0
3181 /* This no longer works with remote unwinding */
3182 #ifndef HOST_WIN32
3183         wapi_desc = wapi_current_thread_desc ();
3184         g_string_append_printf (text, " tid=0x%p this=0x%p %s\n", (gpointer)(gsize)thread->tid, thread,  wapi_desc);
3185         free (wapi_desc);
3186 #endif
3187 #endif
3188
3189         mono_get_eh_callbacks ()->mono_walk_stack_with_state (print_stack_frame_to_string, mono_thread_info_get_suspend_state (info), MONO_UNWIND_SIGNAL_SAFE, text);
3190
3191         fprintf (stdout, "%s", text->str);
3192
3193 #if PLATFORM_WIN32 && TARGET_WIN32 && _DEBUG
3194         OutputDebugStringA(text->str);
3195 #endif
3196
3197         g_string_free (text, TRUE);
3198         fflush (stdout);
3199         return MonoResumeThread;
3200 }
3201
3202 static void
3203 dump_thread (gpointer key, gpointer value, gpointer user)
3204 {
3205         MonoInternalThread *thread = (MonoInternalThread *)value;
3206
3207         if (thread == mono_thread_internal_current ())
3208                 return;
3209
3210         /*
3211         FIXME This still can hang if we stop a thread during malloc.
3212         FIXME This can hang if we suspend on a critical method and the GC kicks in. A fix might be to have function
3213         that takes a callback and runs it with the target suspended.
3214         We probably should loop a bit around trying to get it to either managed code
3215         or WSJ state.
3216         */
3217         mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), FALSE, print_thread_dump, thread);
3218 }
3219
3220 void
3221 mono_threads_perform_thread_dump (void)
3222 {
3223         if (!thread_dump_requested)
3224                 return;
3225
3226         printf ("Full thread dump:\n");
3227
3228         /* We take the loader lock and the root domain lock as to increase our odds of not deadlocking if
3229         something needs then in the process.
3230         */
3231         mono_loader_lock ();
3232         mono_domain_lock (mono_get_root_domain ());
3233
3234         mono_threads_lock ();
3235         mono_g_hash_table_foreach (threads, dump_thread, NULL);
3236         mono_threads_unlock ();
3237
3238         mono_domain_unlock (mono_get_root_domain ());
3239         mono_loader_unlock ();
3240
3241         thread_dump_requested = FALSE;
3242 }
3243
3244 /**
3245  * mono_threads_request_thread_dump:
3246  *
3247  *   Ask all threads except the current to print their stacktrace to stdout.
3248  */
3249 void
3250 mono_threads_request_thread_dump (void)
3251 {
3252         /*The new thread dump code runs out of the finalizer thread. */
3253         thread_dump_requested = TRUE;
3254         mono_gc_finalize_notify ();
3255 }
3256
3257 struct ref_stack {
3258         gpointer *refs;
3259         gint allocated; /* +1 so that refs [allocated] == NULL */
3260         gint bottom;
3261 };
3262
3263 typedef struct ref_stack RefStack;
3264
3265 static RefStack *
3266 ref_stack_new (gint initial_size)
3267 {
3268         RefStack *rs;
3269
3270         initial_size = MAX (initial_size, 16) + 1;
3271         rs = g_new0 (RefStack, 1);
3272         rs->refs = g_new0 (gpointer, initial_size);
3273         rs->allocated = initial_size;
3274         return rs;
3275 }
3276
3277 static void
3278 ref_stack_destroy (gpointer ptr)
3279 {
3280         RefStack *rs = ptr;
3281
3282         if (rs != NULL) {
3283                 g_free (rs->refs);
3284                 g_free (rs);
3285         }
3286 }
3287
3288 static void
3289 ref_stack_push (RefStack *rs, gpointer ptr)
3290 {
3291         g_assert (rs != NULL);
3292
3293         if (rs->bottom >= rs->allocated) {
3294                 rs->refs = g_realloc (rs->refs, rs->allocated * 2 * sizeof (gpointer) + 1);
3295                 rs->allocated <<= 1;
3296                 rs->refs [rs->allocated] = NULL;
3297         }
3298         rs->refs [rs->bottom++] = ptr;
3299 }
3300
3301 static void
3302 ref_stack_pop (RefStack *rs)
3303 {
3304         if (rs == NULL || rs->bottom == 0)
3305                 return;
3306
3307         rs->bottom--;
3308         rs->refs [rs->bottom] = NULL;
3309 }
3310
3311 static gboolean
3312 ref_stack_find (RefStack *rs, gpointer ptr)
3313 {
3314         gpointer *refs;
3315
3316         if (rs == NULL)
3317                 return FALSE;
3318
3319         for (refs = rs->refs; refs && *refs; refs++) {
3320                 if (*refs == ptr)
3321                         return TRUE;
3322         }
3323         return FALSE;
3324 }
3325
3326 /*
3327  * mono_thread_push_appdomain_ref:
3328  *
3329  *   Register that the current thread may have references to objects in domain 
3330  * @domain on its stack. Each call to this function should be paired with a 
3331  * call to pop_appdomain_ref.
3332  */
3333 void 
3334 mono_thread_push_appdomain_ref (MonoDomain *domain)
3335 {
3336         MonoInternalThread *thread = mono_thread_internal_current ();
3337
3338         if (thread) {
3339                 /* printf ("PUSH REF: %"G_GSIZE_FORMAT" -> %s.\n", (gsize)thread->tid, domain->friendly_name); */
3340                 SPIN_LOCK (thread->lock_thread_id);
3341                 if (thread->appdomain_refs == NULL)
3342                         thread->appdomain_refs = ref_stack_new (16);
3343                 ref_stack_push (thread->appdomain_refs, domain);
3344                 SPIN_UNLOCK (thread->lock_thread_id);
3345         }
3346 }
3347
3348 void
3349 mono_thread_pop_appdomain_ref (void)
3350 {
3351         MonoInternalThread *thread = mono_thread_internal_current ();
3352
3353         if (thread) {
3354                 /* printf ("POP REF: %"G_GSIZE_FORMAT" -> %s.\n", (gsize)thread->tid, ((MonoDomain*)(thread->appdomain_refs->data))->friendly_name); */
3355                 SPIN_LOCK (thread->lock_thread_id);
3356                 ref_stack_pop (thread->appdomain_refs);
3357                 SPIN_UNLOCK (thread->lock_thread_id);
3358         }
3359 }
3360
3361 gboolean
3362 mono_thread_internal_has_appdomain_ref (MonoInternalThread *thread, MonoDomain *domain)
3363 {
3364         gboolean res;
3365         SPIN_LOCK (thread->lock_thread_id);
3366         res = ref_stack_find (thread->appdomain_refs, domain);
3367         SPIN_UNLOCK (thread->lock_thread_id);
3368         return res;
3369 }
3370
3371 gboolean
3372 mono_thread_has_appdomain_ref (MonoThread *thread, MonoDomain *domain)
3373 {
3374         return mono_thread_internal_has_appdomain_ref (thread->internal_thread, domain);
3375 }
3376
3377 typedef struct abort_appdomain_data {
3378         struct wait_data wait;
3379         MonoDomain *domain;
3380 } abort_appdomain_data;
3381
3382 static void
3383 collect_appdomain_thread (gpointer key, gpointer value, gpointer user_data)
3384 {
3385         MonoInternalThread *thread = (MonoInternalThread*)value;
3386         abort_appdomain_data *data = (abort_appdomain_data*)user_data;
3387         MonoDomain *domain = data->domain;
3388
3389         if (mono_thread_internal_has_appdomain_ref (thread, domain)) {
3390                 /* printf ("ABORTING THREAD %p BECAUSE IT REFERENCES DOMAIN %s.\n", thread->tid, domain->friendly_name); */
3391
3392                 if(data->wait.num<MAXIMUM_WAIT_OBJECTS) {
3393                         HANDLE handle = mono_threads_open_thread_handle (thread->handle, thread_get_tid (thread));
3394                         if (handle == NULL)
3395                                 return;
3396                         data->wait.handles [data->wait.num] = handle;
3397                         data->wait.threads [data->wait.num] = thread;
3398                         data->wait.num++;
3399                 } else {
3400                         /* Just ignore the rest, we can't do anything with
3401                          * them yet
3402                          */
3403                 }
3404         }
3405 }
3406
3407 /*
3408  * mono_threads_abort_appdomain_threads:
3409  *
3410  *   Abort threads which has references to the given appdomain.
3411  */
3412 gboolean
3413 mono_threads_abort_appdomain_threads (MonoDomain *domain, int timeout)
3414 {
3415 #ifdef __native_client__
3416         return FALSE;
3417 #endif
3418
3419         abort_appdomain_data user_data;
3420         guint32 start_time;
3421         int orig_timeout = timeout;
3422         int i;
3423
3424         THREAD_DEBUG (g_message ("%s: starting abort", __func__));
3425
3426         start_time = mono_msec_ticks ();
3427         do {
3428                 mono_threads_lock ();
3429
3430                 user_data.domain = domain;
3431                 user_data.wait.num = 0;
3432                 /* This shouldn't take any locks */
3433                 mono_g_hash_table_foreach (threads, collect_appdomain_thread, &user_data);
3434                 mono_threads_unlock ();
3435
3436                 if (user_data.wait.num > 0) {
3437                         /* Abort the threads outside the threads lock */
3438                         for (i = 0; i < user_data.wait.num; ++i)
3439                                 ves_icall_System_Threading_Thread_Abort (user_data.wait.threads [i], NULL);
3440
3441                         /*
3442                          * We should wait for the threads either to abort, or to leave the
3443                          * domain. We can't do the latter, so we wait with a timeout.
3444                          */
3445                         wait_for_tids (&user_data.wait, 100);
3446                 }
3447
3448                 /* Update remaining time */
3449                 timeout -= mono_msec_ticks () - start_time;
3450                 start_time = mono_msec_ticks ();
3451
3452                 if (orig_timeout != -1 && timeout < 0)
3453                         return FALSE;
3454         }
3455         while (user_data.wait.num > 0);
3456
3457         THREAD_DEBUG (g_message ("%s: abort done", __func__));
3458
3459         return TRUE;
3460 }
3461
3462 static void
3463 clear_cached_culture (gpointer key, gpointer value, gpointer user_data)
3464 {
3465         MonoInternalThread *thread = (MonoInternalThread*)value;
3466         MonoDomain *domain = (MonoDomain*)user_data;
3467         int i;
3468
3469         /* No locking needed here */
3470         /* FIXME: why no locking? writes to the cache are protected with synch_cs above */
3471
3472         if (thread->cached_culture_info) {
3473                 for (i = 0; i < NUM_CACHED_CULTURES * 2; ++i) {
3474                         MonoObject *obj = mono_array_get (thread->cached_culture_info, MonoObject*, i);
3475                         if (obj && obj->vtable->domain == domain)
3476                                 mono_array_set (thread->cached_culture_info, MonoObject*, i, NULL);
3477                 }
3478         }
3479 }
3480         
3481 /*
3482  * mono_threads_clear_cached_culture:
3483  *
3484  *   Clear the cached_current_culture from all threads if it is in the
3485  * given appdomain.
3486  */
3487 void
3488 mono_threads_clear_cached_culture (MonoDomain *domain)
3489 {
3490         mono_threads_lock ();
3491         mono_g_hash_table_foreach (threads, clear_cached_culture, domain);
3492         mono_threads_unlock ();
3493 }
3494
3495 /*
3496  * mono_thread_get_undeniable_exception:
3497  *
3498  *   Return an exception which needs to be raised when leaving a catch clause.
3499  * This is used for undeniable exception propagation.
3500  */
3501 MonoException*
3502 mono_thread_get_undeniable_exception (void)
3503 {
3504         MonoInternalThread *thread = mono_thread_internal_current ();
3505
3506         if (thread && thread->abort_exc && !is_running_protected_wrapper ()) {
3507                 /*
3508                  * FIXME: Clear the abort exception and return an AppDomainUnloaded 
3509                  * exception if the thread no longer references a dying appdomain.
3510                  */
3511                 thread->abort_exc->trace_ips = NULL;
3512                 thread->abort_exc->stack_trace = NULL;
3513                 return thread->abort_exc;
3514         }
3515
3516         return NULL;
3517 }
3518
3519 #if MONO_SMALL_CONFIG
3520 #define NUM_STATIC_DATA_IDX 4
3521 static const int static_data_size [NUM_STATIC_DATA_IDX] = {
3522         64, 256, 1024, 4096
3523 };
3524 #else
3525 #define NUM_STATIC_DATA_IDX 8
3526 static const int static_data_size [NUM_STATIC_DATA_IDX] = {
3527         1024, 4096, 16384, 65536, 262144, 1048576, 4194304, 16777216
3528 };
3529 #endif
3530
3531 static MonoBitSet *thread_reference_bitmaps [NUM_STATIC_DATA_IDX];
3532 static MonoBitSet *context_reference_bitmaps [NUM_STATIC_DATA_IDX];
3533
3534 static void
3535 mark_slots (void *addr, MonoBitSet **bitmaps, MonoGCMarkFunc mark_func, void *gc_data)
3536 {
3537         gpointer *static_data = addr;
3538
3539         for (int i = 0; i < NUM_STATIC_DATA_IDX; ++i) {
3540                 void **ptr = static_data [i];
3541
3542                 if (!ptr)
3543                         continue;
3544
3545                 MONO_BITSET_FOREACH (bitmaps [i], idx, {
3546                         void **p = ptr + idx;
3547
3548                         if (*p)
3549                                 mark_func ((MonoObject**)p, gc_data);
3550                 });
3551         }
3552 }
3553
3554 static void
3555 mark_tls_slots (void *addr, MonoGCMarkFunc mark_func, void *gc_data)
3556 {
3557         mark_slots (addr, thread_reference_bitmaps, mark_func, gc_data);
3558 }
3559
3560 static void
3561 mark_ctx_slots (void *addr, MonoGCMarkFunc mark_func, void *gc_data)
3562 {
3563         mark_slots (addr, context_reference_bitmaps, mark_func, gc_data);
3564 }
3565
3566 /*
3567  *  mono_alloc_static_data
3568  *
3569  *   Allocate memory blocks for storing threads or context static data
3570  */
3571 static void 
3572 mono_alloc_static_data (gpointer **static_data_ptr, guint32 offset, gboolean threadlocal)
3573 {
3574         guint idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3575         int i;
3576
3577         gpointer* static_data = *static_data_ptr;
3578         if (!static_data) {
3579                 static MonoGCDescriptor tls_desc = MONO_GC_DESCRIPTOR_NULL;
3580                 static MonoGCDescriptor ctx_desc = MONO_GC_DESCRIPTOR_NULL;
3581
3582                 if (mono_gc_user_markers_supported ()) {
3583                         if (tls_desc == MONO_GC_DESCRIPTOR_NULL)
3584                                 tls_desc = mono_gc_make_root_descr_user (mark_tls_slots);
3585
3586                         if (ctx_desc == MONO_GC_DESCRIPTOR_NULL)
3587                                 ctx_desc = mono_gc_make_root_descr_user (mark_ctx_slots);
3588                 }
3589
3590                 static_data = mono_gc_alloc_fixed (static_data_size [0], threadlocal ? tls_desc : ctx_desc,
3591                         threadlocal ? MONO_ROOT_SOURCE_THREAD_STATIC : MONO_ROOT_SOURCE_CONTEXT_STATIC,
3592                         threadlocal ? "managed thread-static variables" : "managed context-static variables");
3593                 *static_data_ptr = static_data;
3594                 static_data [0] = static_data;
3595         }
3596
3597         for (i = 1; i <= idx; ++i) {
3598                 if (static_data [i])
3599                         continue;
3600
3601                 if (mono_gc_user_markers_supported ())
3602                         static_data [i] = g_malloc0 (static_data_size [i]);
3603                 else
3604                         static_data [i] = mono_gc_alloc_fixed (static_data_size [i], MONO_GC_DESCRIPTOR_NULL,
3605                                 threadlocal ? MONO_ROOT_SOURCE_THREAD_STATIC : MONO_ROOT_SOURCE_CONTEXT_STATIC,
3606                                 threadlocal ? "managed thread-static variables" : "managed context-static variables");
3607         }
3608 }
3609
3610 static void 
3611 mono_free_static_data (gpointer* static_data)
3612 {
3613         int i;
3614         for (i = 1; i < NUM_STATIC_DATA_IDX; ++i) {
3615                 gpointer p = static_data [i];
3616                 if (!p)
3617                         continue;
3618                 /*
3619                  * At this point, the static data pointer array is still registered with the
3620                  * GC, so must ensure that mark_tls_slots() will not encounter any invalid
3621                  * data.  Freeing the individual arrays without first nulling their slots
3622                  * would make it possible for mark_tls/ctx_slots() to encounter a pointer to
3623                  * such an already freed array.  See bug #13813.
3624                  */
3625                 static_data [i] = NULL;
3626                 mono_memory_write_barrier ();
3627                 if (mono_gc_user_markers_supported ())
3628                         g_free (p);
3629                 else
3630                         mono_gc_free_fixed (p);
3631         }
3632         mono_gc_free_fixed (static_data);
3633 }
3634
3635 /*
3636  *  mono_init_static_data_info
3637  *
3638  *   Initializes static data counters
3639  */
3640 static void mono_init_static_data_info (StaticDataInfo *static_data)
3641 {
3642         static_data->idx = 0;
3643         static_data->offset = 0;
3644         static_data->freelist = NULL;
3645 }
3646
3647 /*
3648  *  mono_alloc_static_data_slot
3649  *
3650  *   Generates an offset for static data. static_data contains the counters
3651  *  used to generate it.
3652  */
3653 static guint32
3654 mono_alloc_static_data_slot (StaticDataInfo *static_data, guint32 size, guint32 align)
3655 {
3656         if (!static_data->idx && !static_data->offset) {
3657                 /* 
3658                  * we use the first chunk of the first allocation also as
3659                  * an array for the rest of the data 
3660                  */
3661                 static_data->offset = sizeof (gpointer) * NUM_STATIC_DATA_IDX;
3662         }
3663         static_data->offset += align - 1;
3664         static_data->offset &= ~(align - 1);
3665         if (static_data->offset + size >= static_data_size [static_data->idx]) {
3666                 static_data->idx ++;
3667                 g_assert (size <= static_data_size [static_data->idx]);
3668                 g_assert (static_data->idx < NUM_STATIC_DATA_IDX);
3669                 static_data->offset = 0;
3670         }
3671         guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (static_data->idx, static_data->offset, 0);
3672         static_data->offset += size;
3673         return offset;
3674 }
3675
3676 /* 
3677  * ensure thread static fields already allocated are valid for thread
3678  * This function is called when a thread is created or on thread attach.
3679  */
3680 static void
3681 thread_adjust_static_data (MonoInternalThread *thread)
3682 {
3683         mono_threads_lock ();
3684         if (thread_static_info.offset || thread_static_info.idx > 0) {
3685                 /* get the current allocated size */
3686                 guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (thread_static_info.idx, thread_static_info.offset, 0);
3687                 mono_alloc_static_data (&thread->static_data, offset, TRUE);
3688         }
3689         mono_threads_unlock ();
3690 }
3691
3692 /*
3693  * LOCKING: requires that threads_mutex is held
3694  */
3695 static void
3696 context_adjust_static_data (MonoAppContext *ctx)
3697 {
3698         if (context_static_info.offset || context_static_info.idx > 0) {
3699                 guint32 offset = MAKE_SPECIAL_STATIC_OFFSET (context_static_info.idx, context_static_info.offset, 0);
3700                 mono_alloc_static_data (&ctx->static_data, offset, FALSE);
3701         }
3702 }
3703
3704 /*
3705  * LOCKING: requires that threads_mutex is held
3706  */
3707 static void 
3708 alloc_thread_static_data_helper (gpointer key, gpointer value, gpointer user)
3709 {
3710         MonoInternalThread *thread = value;
3711         guint32 offset = GPOINTER_TO_UINT (user);
3712
3713         mono_alloc_static_data (&(thread->static_data), offset, TRUE);
3714 }
3715
3716 /*
3717  * LOCKING: requires that threads_mutex is held
3718  */
3719 static gboolean
3720 alloc_context_static_data_helper (gpointer key, gpointer value, gpointer user)
3721 {
3722         uint32_t gch = GPOINTER_TO_INT (key);
3723         MonoAppContext *ctx = (MonoAppContext *) mono_gchandle_get_target (gch);
3724
3725         if (!ctx) {
3726                 mono_gchandle_free (gch);
3727                 return TRUE; // Remove this key/value pair
3728         }
3729
3730         guint32 offset = GPOINTER_TO_UINT (user);
3731         mono_alloc_static_data (&ctx->static_data, offset, FALSE);
3732
3733         return FALSE; // Don't remove it
3734 }
3735
3736 static StaticDataFreeList*
3737 search_slot_in_freelist (StaticDataInfo *static_data, guint32 size, guint32 align)
3738 {
3739         StaticDataFreeList* prev = NULL;
3740         StaticDataFreeList* tmp = static_data->freelist;
3741         while (tmp) {
3742                 if (tmp->size == size) {
3743                         if (prev)
3744                                 prev->next = tmp->next;
3745                         else
3746                                 static_data->freelist = tmp->next;
3747                         return tmp;
3748                 }
3749                 prev = tmp;
3750                 tmp = tmp->next;
3751         }
3752         return NULL;
3753 }
3754
3755 #if SIZEOF_VOID_P == 4
3756 #define ONE_P 1
3757 #else
3758 #define ONE_P 1ll
3759 #endif
3760
3761 static void
3762 update_reference_bitmap (MonoBitSet **sets, guint32 offset, uintptr_t *bitmap, int numbits)
3763 {
3764         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3765         if (!sets [idx])
3766                 sets [idx] = mono_bitset_new (static_data_size [idx] / sizeof (uintptr_t), 0);
3767         MonoBitSet *rb = sets [idx];
3768         offset = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
3769         offset /= sizeof (uintptr_t);
3770         /* offset is now the bitmap offset */
3771         for (int i = 0; i < numbits; ++i) {
3772                 if (bitmap [i / sizeof (uintptr_t)] & (ONE_P << (i & (sizeof (uintptr_t) * 8 -1))))
3773                         mono_bitset_set_fast (rb, offset + i);
3774         }
3775 }
3776
3777 static void
3778 clear_reference_bitmap (MonoBitSet **sets, guint32 offset, guint32 size)
3779 {
3780         int idx = ACCESS_SPECIAL_STATIC_OFFSET (offset, index);
3781         MonoBitSet *rb = sets [idx];
3782         offset = ACCESS_SPECIAL_STATIC_OFFSET (offset, offset);
3783         offset /= sizeof (uintptr_t);
3784         /* offset is now the bitmap offset */
3785         for (int i = 0; i < size / sizeof (uintptr_t); i++)
3786                 mono_bitset_clear_fast (rb, offset + i);
3787 }
3788
3789 guint32
3790 mono_alloc_special_static_data (guint32 static_type, guint32 size, guint32 align, uintptr_t *bitmap, int numbits)
3791 {
3792         g_assert (static_type == SPECIAL_STATIC_THREAD || static_type == SPECIAL_STATIC_CONTEXT);
3793
3794         StaticDataInfo *info;
3795         MonoBitSet **sets;
3796
3797         if (static_type == SPECIAL_STATIC_THREAD) {
3798                 info = &thread_static_info;
3799                 sets = thread_reference_bitmaps;
3800         } else {
3801                 info = &context_static_info;
3802                 sets = context_reference_bitmaps;
3803         }
3804
3805         mono_threads_lock ();
3806
3807         StaticDataFreeList *item = search_slot_in_freelist (info, size, align);
3808         guint32 offset;
3809
3810         if (item) {
3811                 offset = item->offset;
3812                 g_free (item);
3813         } else {
3814                 offset = mono_alloc_static_data_slot (info, size, align);
3815         }
3816
3817         update_reference_bitmap (sets, offset, bitmap, numbits);
3818
3819         if (static_type == SPECIAL_STATIC_THREAD) {
3820                 /* This can be called during startup */
3821                 if (threads != NULL)
3822                         mono_g_hash_table_foreach (threads, alloc_thread_static_data_helper, GUINT_TO_POINTER (offset));
3823         } else {
3824                 if (contexts != NULL)
3825                         g_hash_table_foreach_remove (contexts, alloc_context_static_data_helper, GUINT_TO_POINTER (offset));
3826
3827                 ACCESS_SPECIAL_STATIC_OFFSET (offset, type) = SPECIAL_STATIC_OFFSET_TYPE_CONTEXT;
3828         }
3829
3830         mono_threads_unlock ();
3831
3832         return offset;
3833 }
3834
3835 gpointer
3836 mono_get_special_static_data_for_thread (MonoInternalThread *thread, guint32 offset)
3837 {
3838         guint32 static_type = ACCESS_SPECIAL_STATIC_OFFSET (offset, type);
3839
3840         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
3841                 return get_thread_static_data (thread, offset);
3842         } else {
3843                 return get_context_static_data (thread->current_appcontext, offset);
3844         }
3845 }
3846
3847 gpointer
3848 mono_get_special_static_data (guint32 offset)
3849 {
3850         return mono_get_special_static_data_for_thread (mono_thread_internal_current (), offset);
3851 }
3852
3853 typedef struct {
3854         guint32 offset;
3855         guint32 size;
3856 } OffsetSize;
3857
3858 /*
3859  * LOCKING: requires that threads_mutex is held
3860  */
3861 static void 
3862 free_thread_static_data_helper (gpointer key, gpointer value, gpointer user)
3863 {
3864         MonoInternalThread *thread = value;
3865         OffsetSize *data = user;
3866         int idx = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, index);
3867         int off = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, offset);
3868         char *ptr;
3869
3870         if (!thread->static_data || !thread->static_data [idx])
3871                 return;
3872         ptr = ((char*) thread->static_data [idx]) + off;
3873         mono_gc_bzero_atomic (ptr, data->size);
3874 }
3875
3876 /*
3877  * LOCKING: requires that threads_mutex is held
3878  */
3879 static gboolean
3880 free_context_static_data_helper (gpointer key, gpointer value, gpointer user)
3881 {
3882         uint32_t gch = GPOINTER_TO_INT (key);
3883         MonoAppContext *ctx = (MonoAppContext *) mono_gchandle_get_target (gch);
3884
3885         if (!ctx) {
3886                 mono_gchandle_free (gch);
3887                 return TRUE; // Remove this key/value pair
3888         }
3889
3890         OffsetSize *data = user;
3891         int idx = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, index);
3892         int off = ACCESS_SPECIAL_STATIC_OFFSET (data->offset, offset);
3893         char *ptr;
3894
3895         if (!ctx->static_data || !ctx->static_data [idx])
3896                 return FALSE; // Don't remove this key/value pair
3897
3898         ptr = ((char*) ctx->static_data [idx]) + off;
3899         mono_gc_bzero_atomic (ptr, data->size);
3900
3901         return FALSE; // Don't remove this key/value pair
3902 }
3903
3904 static void
3905 do_free_special_slot (guint32 offset, guint32 size)
3906 {
3907         guint32 static_type = ACCESS_SPECIAL_STATIC_OFFSET (offset, type);
3908         MonoBitSet **sets;
3909         StaticDataInfo *info;
3910
3911         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
3912                 info = &thread_static_info;
3913                 sets = thread_reference_bitmaps;
3914         } else {
3915                 info = &context_static_info;
3916                 sets = context_reference_bitmaps;
3917         }
3918
3919         guint32 data_offset = offset;
3920         ACCESS_SPECIAL_STATIC_OFFSET (data_offset, type) = 0;
3921         OffsetSize data = { data_offset, size };
3922
3923         clear_reference_bitmap (sets, data.offset, data.size);
3924
3925         if (static_type == SPECIAL_STATIC_OFFSET_TYPE_THREAD) {
3926                 if (threads != NULL)
3927                         mono_g_hash_table_foreach (threads, free_thread_static_data_helper, &data);
3928         } else {
3929                 if (contexts != NULL)
3930                         g_hash_table_foreach_remove (contexts, free_context_static_data_helper, &data);
3931         }
3932
3933         if (!mono_runtime_is_shutting_down ()) {
3934                 StaticDataFreeList *item = g_new0 (StaticDataFreeList, 1);
3935
3936                 item->offset = offset;
3937                 item->size = size;
3938
3939                 item->next = info->freelist;
3940                 info->freelist = item;
3941         }
3942 }
3943
3944 static void
3945 do_free_special (gpointer key, gpointer value, gpointer data)
3946 {
3947         MonoClassField *field = key;
3948         guint32 offset = GPOINTER_TO_UINT (value);
3949         gint32 align;
3950         guint32 size;
3951         size = mono_type_size (field->type, &align);
3952         do_free_special_slot (offset, size);
3953 }
3954
3955 void
3956 mono_alloc_special_static_data_free (GHashTable *special_static_fields)
3957 {
3958         mono_threads_lock ();
3959
3960         g_hash_table_foreach (special_static_fields, do_free_special, NULL);
3961
3962         mono_threads_unlock ();
3963 }
3964
3965 static void
3966 mono_special_static_data_free_slot (guint32 offset, guint32 size)
3967 {
3968         /* Only ever called for ThreadLocal instances */
3969         g_assert (ACCESS_SPECIAL_STATIC_OFFSET (offset, type) == SPECIAL_STATIC_OFFSET_TYPE_THREAD);
3970
3971         mono_threads_lock ();
3972         do_free_special_slot (offset, size);
3973         mono_threads_unlock ();
3974 }
3975
3976 #ifdef HOST_WIN32
3977 static void CALLBACK dummy_apc (ULONG_PTR param)
3978 {
3979 }
3980 #endif
3981
3982 /*
3983  * mono_thread_execute_interruption
3984  * 
3985  * Performs the operation that the requested thread state requires (abort,
3986  * suspend or stop)
3987  */
3988 static MonoException*
3989 mono_thread_execute_interruption (void)
3990 {
3991         MonoInternalThread *thread = mono_thread_internal_current ();
3992
3993         LOCK_THREAD (thread);
3994
3995         /* MonoThread::interruption_requested can only be changed with atomics */
3996         if (InterlockedCompareExchange (&thread->interruption_requested, FALSE, TRUE)) {
3997                 /* this will consume pending APC calls */
3998 #ifdef HOST_WIN32
3999                 WaitForSingleObjectEx (GetCurrentThread(), 0, TRUE);
4000 #endif
4001                 InterlockedDecrement (&thread_interruption_requested);
4002
4003                 /* Clear the interrupted flag of the thread so it can wait again */
4004                 mono_thread_info_clear_self_interrupt ();
4005         }
4006
4007         if ((thread->state & ThreadState_AbortRequested) != 0) {
4008                 UNLOCK_THREAD (thread);
4009                 if (thread->abort_exc == NULL) {
4010                         /* 
4011                          * This might be racy, but it has to be called outside the lock
4012                          * since it calls managed code.
4013                          */
4014                         MONO_OBJECT_SETREF (thread, abort_exc, mono_get_exception_thread_abort ());
4015                 }
4016                 return thread->abort_exc;
4017         }
4018         else if ((thread->state & ThreadState_SuspendRequested) != 0) {
4019                 self_suspend_internal (thread);         
4020                 return NULL;
4021         }
4022         else if ((thread->state & ThreadState_StopRequested) != 0) {
4023                 /* FIXME: do this through the JIT? */
4024
4025                 UNLOCK_THREAD (thread);
4026                 
4027                 mono_thread_exit ();
4028                 return NULL;
4029         } else if (thread->pending_exception) {
4030                 MonoException *exc;
4031
4032                 exc = thread->pending_exception;
4033                 thread->pending_exception = NULL;
4034
4035         UNLOCK_THREAD (thread);
4036         return exc;
4037         } else if (thread->thread_interrupt_requested) {
4038
4039                 thread->thread_interrupt_requested = FALSE;
4040                 UNLOCK_THREAD (thread);
4041                 
4042                 return(mono_get_exception_thread_interrupted ());
4043         }
4044         
4045         UNLOCK_THREAD (thread);
4046         
4047         return NULL;
4048 }
4049
4050 /*
4051  * mono_thread_request_interruption
4052  *
4053  * A signal handler can call this method to request the interruption of a
4054  * thread. The result of the interruption will depend on the current state of
4055  * the thread. If the result is an exception that needs to be throw, it is 
4056  * provided as return value.
4057  */
4058 MonoException*
4059 mono_thread_request_interruption (gboolean running_managed)
4060 {
4061         MonoInternalThread *thread = mono_thread_internal_current ();
4062
4063         /* The thread may already be stopping */
4064         if (thread == NULL) 
4065                 return NULL;
4066
4067 #ifdef HOST_WIN32
4068         if (thread->interrupt_on_stop && 
4069                 thread->state & ThreadState_StopRequested && 
4070                 thread->state & ThreadState_Background)
4071                 ExitThread (1);
4072 #endif
4073         
4074         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4075                 return NULL;
4076         InterlockedIncrement (&thread_interruption_requested);
4077
4078         if (!running_managed || is_running_protected_wrapper ()) {
4079                 /* Can't stop while in unmanaged code. Increase the global interruption
4080                    request count. When exiting the unmanaged method the count will be
4081                    checked and the thread will be interrupted. */
4082
4083                 if (mono_thread_notify_pending_exc_fn && !running_managed)
4084                         /* The JIT will notify the thread about the interruption */
4085                         /* This shouldn't take any locks */
4086                         mono_thread_notify_pending_exc_fn (NULL);
4087
4088                 /* this will awake the thread if it is in WaitForSingleObject 
4089                    or similar */
4090                 /* Our implementation of this function ignores the func argument */
4091 #ifdef HOST_WIN32
4092                 QueueUserAPC ((PAPCFUNC)dummy_apc, thread->handle, (ULONG_PTR)NULL);
4093 #else
4094                 mono_thread_info_self_interrupt ();
4095 #endif
4096                 return NULL;
4097         }
4098         else {
4099                 return mono_thread_execute_interruption ();
4100         }
4101 }
4102
4103 /*This function should be called by a thread after it has exited all of
4104  * its handle blocks at interruption time.*/
4105 MonoException*
4106 mono_thread_resume_interruption (void)
4107 {
4108         MonoInternalThread *thread = mono_thread_internal_current ();
4109         gboolean still_aborting;
4110
4111         /* The thread may already be stopping */
4112         if (thread == NULL)
4113                 return NULL;
4114
4115         LOCK_THREAD (thread);
4116         still_aborting = (thread->state & ThreadState_AbortRequested) != 0;
4117         UNLOCK_THREAD (thread);
4118
4119         /*This can happen if the protected block called Thread::ResetAbort*/
4120         if (!still_aborting)
4121                 return FALSE;
4122
4123         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4124                 return NULL;
4125         InterlockedIncrement (&thread_interruption_requested);
4126
4127         mono_thread_info_self_interrupt ();
4128
4129         return mono_thread_execute_interruption ();
4130 }
4131
4132 gboolean mono_thread_interruption_requested ()
4133 {
4134         if (thread_interruption_requested) {
4135                 MonoInternalThread *thread = mono_thread_internal_current ();
4136                 /* The thread may already be stopping */
4137                 if (thread != NULL) 
4138                         return (thread->interruption_requested);
4139         }
4140         return FALSE;
4141 }
4142
4143 static MonoException*
4144 mono_thread_interruption_checkpoint_request (gboolean bypass_abort_protection)
4145 {
4146         MonoInternalThread *thread = mono_thread_internal_current ();
4147
4148         /* The thread may already be stopping */
4149         if (thread == NULL)
4150                 return NULL;
4151
4152         if (thread->interruption_requested && (bypass_abort_protection || !is_running_protected_wrapper ())) {
4153                 MonoException* exc = mono_thread_execute_interruption ();
4154                 if (exc)
4155                         return exc;
4156         }
4157         return NULL;
4158 }
4159
4160 /*
4161  * Performs the interruption of the current thread, if one has been requested,
4162  * and the thread is not running a protected wrapper.
4163  * Return the exception which needs to be thrown, if any.
4164  */
4165 MonoException*
4166 mono_thread_interruption_checkpoint (void)
4167 {
4168         return mono_thread_interruption_checkpoint_request (FALSE);
4169 }
4170
4171 /*
4172  * Performs the interruption of the current thread, if one has been requested.
4173  * Return the exception which needs to be thrown, if any.
4174  */
4175 MonoException*
4176 mono_thread_force_interruption_checkpoint_noraise (void)
4177 {
4178         return mono_thread_interruption_checkpoint_request (TRUE);
4179 }
4180
4181 /*
4182  * Performs the interruption of the current thread, if one has been requested.
4183  * Throw the exception which needs to be thrown, if any.
4184  */
4185 void
4186 mono_thread_force_interruption_checkpoint (void)
4187 {
4188         MonoException *ex;
4189
4190         ex = mono_thread_interruption_checkpoint_request (TRUE);
4191         if (ex)
4192                 mono_raise_exception (ex);
4193 }
4194
4195 /*
4196  * mono_thread_get_and_clear_pending_exception:
4197  *
4198  *   Return any pending exceptions for the current thread and clear it as a side effect.
4199  */
4200 MonoException*
4201 mono_thread_get_and_clear_pending_exception (void)
4202 {
4203         MonoInternalThread *thread = mono_thread_internal_current ();
4204
4205         /* The thread may already be stopping */
4206         if (thread == NULL)
4207                 return NULL;
4208
4209         if (thread->interruption_requested && !is_running_protected_wrapper ()) {
4210                 return mono_thread_execute_interruption ();
4211         }
4212         
4213         if (thread->pending_exception) {
4214                 MonoException *exc = thread->pending_exception;
4215
4216                 thread->pending_exception = NULL;
4217                 return exc;
4218         }
4219
4220         return NULL;
4221 }
4222
4223 /*
4224  * mono_set_pending_exception:
4225  *
4226  *   Set the pending exception of the current thread to EXC.
4227  * The exception will be thrown when execution returns to managed code.
4228  */
4229 void
4230 mono_set_pending_exception (MonoException *exc)
4231 {
4232         MonoInternalThread *thread = mono_thread_internal_current ();
4233
4234         /* The thread may already be stopping */
4235         if (thread == NULL)
4236                 return;
4237
4238         MONO_OBJECT_SETREF (thread, pending_exception, exc);
4239
4240     mono_thread_request_interruption (FALSE);
4241 }
4242
4243 /**
4244  * mono_thread_interruption_request_flag:
4245  *
4246  * Returns the address of a flag that will be non-zero if an interruption has
4247  * been requested for a thread. The thread to interrupt may not be the current
4248  * thread, so an additional call to mono_thread_interruption_requested() or
4249  * mono_thread_interruption_checkpoint() is allways needed if the flag is not
4250  * zero.
4251  */
4252 gint32* mono_thread_interruption_request_flag ()
4253 {
4254         return &thread_interruption_requested;
4255 }
4256
4257 void 
4258 mono_thread_init_apartment_state (void)
4259 {
4260 #ifdef HOST_WIN32
4261         MonoInternalThread* thread = mono_thread_internal_current ();
4262
4263         /* Positive return value indicates success, either
4264          * S_OK if this is first CoInitialize call, or
4265          * S_FALSE if CoInitialize already called, but with same
4266          * threading model. A negative value indicates failure,
4267          * probably due to trying to change the threading model.
4268          */
4269         if (CoInitializeEx(NULL, (thread->apartment_state == ThreadApartmentState_STA) 
4270                         ? COINIT_APARTMENTTHREADED 
4271                         : COINIT_MULTITHREADED) < 0) {
4272                 thread->apartment_state = ThreadApartmentState_Unknown;
4273         }
4274 #endif
4275 }
4276
4277 void 
4278 mono_thread_cleanup_apartment_state (void)
4279 {
4280 #ifdef HOST_WIN32
4281         MonoInternalThread* thread = mono_thread_internal_current ();
4282
4283         if (thread && thread->apartment_state != ThreadApartmentState_Unknown) {
4284                 CoUninitialize ();
4285         }
4286 #endif
4287 }
4288
4289 void
4290 mono_thread_set_state (MonoInternalThread *thread, MonoThreadState state)
4291 {
4292         LOCK_THREAD (thread);
4293         thread->state |= state;
4294         UNLOCK_THREAD (thread);
4295 }
4296
4297 void
4298 mono_thread_clr_state (MonoInternalThread *thread, MonoThreadState state)
4299 {
4300         LOCK_THREAD (thread);
4301         thread->state &= ~state;
4302         UNLOCK_THREAD (thread);
4303 }
4304
4305 gboolean
4306 mono_thread_test_state (MonoInternalThread *thread, MonoThreadState test)
4307 {
4308         gboolean ret = FALSE;
4309
4310         LOCK_THREAD (thread);
4311
4312         if ((thread->state & test) != 0) {
4313                 ret = TRUE;
4314         }
4315         
4316         UNLOCK_THREAD (thread);
4317         
4318         return ret;
4319 }
4320
4321 static gboolean has_tls_get = FALSE;
4322
4323 void
4324 mono_runtime_set_has_tls_get (gboolean val)
4325 {
4326         has_tls_get = val;
4327 }
4328
4329 gboolean
4330 mono_runtime_has_tls_get (void)
4331 {
4332         return has_tls_get;
4333 }
4334
4335 static void
4336 self_interrupt_thread (void *_unused)
4337 {
4338         MonoThreadInfo *info = mono_thread_info_current ();
4339         MonoException *exc = mono_thread_execute_interruption ();
4340         if (exc) /*We must use _with_context since we didn't trampoline into the runtime*/
4341                 mono_raise_exception_with_context (exc, &info->thread_saved_state [ASYNC_SUSPEND_STATE_INDEX].ctx); /* FIXME using thread_saved_state [ASYNC_SUSPEND_STATE_INDEX] can race with another suspend coming in. */
4342         g_assert_not_reached (); /*this MUST not happen since we can't resume from an async call*/
4343 }
4344
4345 static gboolean
4346 mono_jit_info_match (MonoJitInfo *ji, gpointer ip)
4347 {
4348         if (!ji)
4349                 return FALSE;
4350         return ji->code_start <= ip && (char*)ip < (char*)ji->code_start + ji->code_size;
4351 }
4352
4353 static gboolean
4354 last_managed (MonoStackFrameInfo *frame, MonoContext *ctx, gpointer data)
4355 {
4356         MonoJitInfo **dest = data;
4357         *dest = frame->ji;
4358         return TRUE;
4359 }
4360
4361 static MonoJitInfo*
4362 mono_thread_info_get_last_managed (MonoThreadInfo *info)
4363 {
4364         MonoJitInfo *ji = NULL;
4365         if (!info)
4366                 return NULL;
4367         mono_get_eh_callbacks ()->mono_walk_stack_with_state (last_managed, mono_thread_info_get_suspend_state (info), MONO_UNWIND_SIGNAL_SAFE, &ji);
4368         return ji;
4369 }
4370
4371 typedef struct {
4372         MonoInternalThread *thread;
4373         gboolean install_async_abort;
4374         MonoThreadInfoInterruptToken *interrupt_token;
4375 } AbortThreadData;
4376
4377 static SuspendThreadResult
4378 abort_thread_critical (MonoThreadInfo *info, gpointer ud)
4379 {
4380         AbortThreadData *data = ud;
4381         MonoInternalThread *thread = data->thread;
4382         MonoJitInfo *ji = NULL;
4383         gboolean protected_wrapper;
4384         gboolean running_managed;
4385
4386         if (mono_get_eh_callbacks ()->mono_install_handler_block_guard (mono_thread_info_get_suspend_state (info)))
4387                 return MonoResumeThread;
4388
4389         /*someone is already interrupting it*/
4390         if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 1)
4391                 return MonoResumeThread;
4392
4393         InterlockedIncrement (&thread_interruption_requested);
4394
4395         ji = mono_thread_info_get_last_managed (info);
4396         protected_wrapper = ji && !ji->is_trampoline && !ji->async && mono_threads_is_critical_method (mono_jit_info_get_method (ji));
4397         running_managed = mono_jit_info_match (ji, MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx));
4398
4399         if (!protected_wrapper && running_managed) {
4400                 /*We are in managed code*/
4401                 /*Set the thread to call */
4402                 if (data->install_async_abort)
4403                         mono_thread_info_setup_async_call (info, self_interrupt_thread, NULL);
4404                 return MonoResumeThread;
4405         } else {
4406                 if (mono_thread_notify_pending_exc_fn)
4407                         /* The JIT will notify the thread about the interruption */
4408                         mono_thread_notify_pending_exc_fn (info);
4409
4410                 /* 
4411                  * This will cause waits to be broken.
4412                  * It will also prevent the thread from entering a wait, so if the thread returns
4413                  * from the wait before it receives the abort signal, it will just spin in the wait
4414                  * functions in the io-layer until the signal handler calls QueueUserAPC which will
4415                  * make it return.
4416                  */
4417                 data->interrupt_token = mono_thread_info_prepare_interrupt (info);
4418
4419                 return MonoResumeThread;
4420         }
4421 }
4422
4423 static void
4424 abort_thread_internal (MonoInternalThread *thread, gboolean can_raise_exception, gboolean install_async_abort)
4425 {
4426         AbortThreadData data = { 0 };
4427         data.thread = thread;
4428         data.install_async_abort = install_async_abort;
4429
4430         /*
4431         FIXME this is insanely broken, it doesn't cause interruption to happen
4432         synchronously since passing FALSE to mono_thread_request_interruption makes sure it returns NULL
4433         */
4434         if (thread == mono_thread_internal_current ()) {
4435                 /* Do it synchronously */
4436                 MonoException *exc = mono_thread_request_interruption (can_raise_exception); 
4437                 if (exc)
4438                         mono_raise_exception (exc);
4439
4440                 mono_thread_info_self_interrupt ();
4441
4442                 return;
4443         }
4444
4445         mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), TRUE, abort_thread_critical, &data);
4446         if (data.interrupt_token)
4447                 mono_thread_info_finish_interrupt (data.interrupt_token);
4448         /*FIXME we need to wait for interruption to complete -- figure out how much into interruption we should wait for here*/
4449 }
4450
4451 typedef struct{
4452         MonoInternalThread *thread;
4453         gboolean interrupt;
4454         MonoThreadInfoInterruptToken *interrupt_token;
4455 } SuspendThreadData;
4456
4457 static SuspendThreadResult
4458 suspend_thread_critical (MonoThreadInfo *info, gpointer ud)
4459 {
4460         SuspendThreadData *data = ud;
4461         MonoInternalThread *thread = data->thread;
4462         MonoJitInfo *ji = NULL;
4463         gboolean protected_wrapper;
4464         gboolean running_managed;
4465
4466         ji = mono_thread_info_get_last_managed (info);
4467         protected_wrapper = ji && !ji->is_trampoline && !ji->async && mono_threads_is_critical_method (mono_jit_info_get_method (ji));
4468         running_managed = mono_jit_info_match (ji, MONO_CONTEXT_GET_IP (&mono_thread_info_get_suspend_state (info)->ctx));
4469
4470         if (running_managed && !protected_wrapper) {
4471                 thread->state &= ~ThreadState_SuspendRequested;
4472                 thread->state |= ThreadState_Suspended;
4473                 return KeepSuspended;
4474         } else {
4475                 if (InterlockedCompareExchange (&thread->interruption_requested, 1, 0) == 0)
4476                         InterlockedIncrement (&thread_interruption_requested);
4477                 if (data->interrupt)
4478                         data->interrupt_token = mono_thread_info_prepare_interrupt (thread->thread_info);
4479                 
4480                 if (mono_thread_notify_pending_exc_fn && !running_managed)
4481                         /* The JIT will notify the thread about the interruption */
4482                         mono_thread_notify_pending_exc_fn (info);
4483                 return MonoResumeThread;
4484         }
4485 }
4486         
4487 static void
4488 suspend_thread_internal (MonoInternalThread *thread, gboolean interrupt)
4489 {
4490         LOCK_THREAD (thread);
4491         if (thread == mono_thread_internal_current ()) {
4492                 mono_thread_info_begin_self_suspend ();
4493                 //XXX replace this with better named functions
4494                 thread->state &= ~ThreadState_SuspendRequested;
4495                 thread->state |= ThreadState_Suspended;
4496                 UNLOCK_THREAD (thread);
4497                 mono_thread_info_end_self_suspend ();
4498         } else {
4499                 SuspendThreadData data = { 0 };
4500                 data.thread = thread;
4501                 data.interrupt = interrupt;
4502
4503                 mono_thread_info_safe_suspend_and_run (thread_get_tid (thread), interrupt, suspend_thread_critical, &data);
4504                 if (data.interrupt_token)
4505                         mono_thread_info_finish_interrupt (data.interrupt_token);
4506                 UNLOCK_THREAD (thread);
4507         }
4508 }
4509
4510 /*This is called with @thread synch_cs held and it must release it*/
4511 static void
4512 self_suspend_internal (MonoInternalThread *thread)
4513 {
4514         mono_thread_info_begin_self_suspend ();
4515         thread->state &= ~ThreadState_SuspendRequested;
4516         thread->state |= ThreadState_Suspended;
4517         UNLOCK_THREAD (thread);
4518         mono_thread_info_end_self_suspend ();
4519 }
4520
4521 /*This is called with @thread synch_cs held and it must release it*/
4522 static gboolean
4523 resume_thread_internal (MonoInternalThread *thread)
4524 {
4525         UNLOCK_THREAD (thread);
4526         /* Awake the thread */
4527         if (!mono_thread_info_resume (thread_get_tid (thread)))
4528                 return FALSE;
4529         LOCK_THREAD (thread);
4530         thread->state &= ~ThreadState_Suspended;
4531         UNLOCK_THREAD (thread);
4532         return TRUE;
4533 }
4534
4535
4536 /*
4537  * mono_thread_is_foreign:
4538  * @thread: the thread to query
4539  *
4540  * This function allows one to determine if a thread was created by the mono runtime and has
4541  * a well defined lifecycle or it's a foreigh one, created by the native environment.
4542  *
4543  * Returns: true if @thread was not created by the runtime.
4544  */
4545 mono_bool
4546 mono_thread_is_foreign (MonoThread *thread)
4547 {
4548         MonoThreadInfo *info = thread->internal_thread->thread_info;
4549         return info->runtime_thread == FALSE;
4550 }
4551
4552 /*
4553  * mono_add_joinable_thread:
4554  *
4555  *   Add TID to the list of joinable threads.
4556  * LOCKING: Acquires the threads lock.
4557  */
4558 void
4559 mono_threads_add_joinable_thread (gpointer tid)
4560 {
4561 #ifndef HOST_WIN32
4562         /*
4563          * We cannot detach from threads because it causes problems like
4564          * 2fd16f60/r114307. So we collect them and join them when
4565          * we have time (in he finalizer thread).
4566          */
4567         joinable_threads_lock ();
4568         if (!joinable_threads)
4569                 joinable_threads = g_hash_table_new (NULL, NULL);
4570         g_hash_table_insert (joinable_threads, tid, tid);
4571         joinable_thread_count ++;
4572         joinable_threads_unlock ();
4573
4574         mono_gc_finalize_notify ();
4575 #endif
4576 }
4577
4578 /*
4579  * mono_threads_join_threads:
4580  *
4581  *   Join all joinable threads. This is called from the finalizer thread.
4582  * LOCKING: Acquires the threads lock.
4583  */
4584 void
4585 mono_threads_join_threads (void)
4586 {
4587 #ifndef HOST_WIN32
4588         GHashTableIter iter;
4589         gpointer key;
4590         gpointer tid;
4591         pthread_t thread;
4592         gboolean found;
4593
4594         /* Fastpath */
4595         if (!joinable_thread_count)
4596                 return;
4597
4598         while (TRUE) {
4599                 joinable_threads_lock ();
4600                 found = FALSE;
4601                 if (g_hash_table_size (joinable_threads)) {
4602                         g_hash_table_iter_init (&iter, joinable_threads);
4603                         g_hash_table_iter_next (&iter, &key, (void**)&tid);
4604                         thread = (pthread_t)tid;
4605                         g_hash_table_remove (joinable_threads, key);
4606                         joinable_thread_count --;
4607                         found = TRUE;
4608                 }
4609                 joinable_threads_unlock ();
4610                 if (found) {
4611                         if (thread != pthread_self ())
4612                                 /* This shouldn't block */
4613                                 pthread_join (thread, NULL);
4614                 } else {
4615                         break;
4616                 }
4617         }
4618 #endif
4619 }
4620
4621 /*
4622  * mono_thread_join:
4623  *
4624  *   Wait for thread TID to exit.
4625  * LOCKING: Acquires the threads lock.
4626  */
4627 void
4628 mono_thread_join (gpointer tid)
4629 {
4630 #ifndef HOST_WIN32
4631         pthread_t thread;
4632         gboolean found = FALSE;
4633
4634         joinable_threads_lock ();
4635         if (!joinable_threads)
4636                 joinable_threads = g_hash_table_new (NULL, NULL);
4637         if (g_hash_table_lookup (joinable_threads, tid)) {
4638                 g_hash_table_remove (joinable_threads, tid);
4639                 joinable_thread_count --;
4640                 found = TRUE;
4641         }
4642         joinable_threads_unlock ();
4643         if (!found)
4644                 return;
4645         thread = (pthread_t)tid;
4646         pthread_join (thread, NULL);
4647 #endif
4648 }
4649
4650 void
4651 mono_thread_internal_check_for_interruption_critical (MonoInternalThread *thread)
4652 {
4653         if ((thread->state & (ThreadState_StopRequested | ThreadState_SuspendRequested)) != 0)
4654                 mono_thread_interruption_checkpoint ();
4655 }
4656
4657 static inline gboolean
4658 is_appdomainunloaded_exception (MonoClass *klass)
4659 {
4660         static MonoClass *app_domain_unloaded_exception_klass = NULL;
4661
4662         if (!app_domain_unloaded_exception_klass)
4663                 app_domain_unloaded_exception_klass = mono_class_from_name (mono_defaults.corlib, "System", "AppDomainUnloadedException");
4664         g_assert (app_domain_unloaded_exception_klass);
4665
4666         return klass == app_domain_unloaded_exception_klass;
4667 }
4668
4669 static inline gboolean
4670 is_threadabort_exception (MonoClass *klass)
4671 {
4672         return klass == mono_defaults.threadabortexception_class;
4673 }
4674
4675 void
4676 mono_thread_internal_unhandled_exception (MonoObject* exc)
4677 {
4678         if (mono_runtime_unhandled_exception_policy_get () == MONO_UNHANDLED_POLICY_CURRENT) {
4679                 MonoClass *klass = exc->vtable->klass;
4680                 if (is_threadabort_exception (klass)) {
4681                         mono_thread_internal_reset_abort (mono_thread_internal_current ());
4682                 } else if (!is_appdomainunloaded_exception (klass)) {
4683                         mono_unhandled_exception (exc);
4684                         if (mono_environment_exitcode_get () == 1)
4685                                 exit (255);
4686                 }
4687         }
4688 }