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