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