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