Merge pull request #1066 from esdrubal/bug19313
[mono.git] / mono / metadata / threads-types.h
1 /*
2  * threads-types.h: Generic thread typedef support (includes
3  * system-specific files)
4  *
5  * Author:
6  *      Dick Porter (dick@ximian.com)
7  *
8  * (C) 2001 Ximian, Inc
9  * (C) Copyright 2002-2006 Novell, Inc
10  */
11
12 #ifndef _MONO_METADATA_THREADS_TYPES_H_
13 #define _MONO_METADATA_THREADS_TYPES_H_
14
15 #include <glib.h>
16
17 #include <mono/io-layer/io-layer.h>
18 #include <mono/metadata/object.h>
19 #include "mono/utils/mono-compiler.h"
20 #include "mono/utils/mono-membar.h"
21
22 /* This is a copy of System.Threading.ThreadState */
23 typedef enum {
24         ThreadState_Running = 0x00000000,
25         ThreadState_StopRequested = 0x00000001,
26         ThreadState_SuspendRequested = 0x00000002,
27         ThreadState_Background = 0x00000004,
28         ThreadState_Unstarted = 0x00000008,
29         ThreadState_Stopped = 0x00000010,
30         ThreadState_WaitSleepJoin = 0x00000020,
31         ThreadState_Suspended = 0x00000040,
32         ThreadState_AbortRequested = 0x00000080,
33         ThreadState_Aborted = 0x00000100
34 } MonoThreadState; 
35
36 /* This is a copy of System.Threading.ApartmentState */
37 typedef enum {
38         ThreadApartmentState_STA = 0x00000000,
39         ThreadApartmentState_MTA = 0x00000001,
40         ThreadApartmentState_Unknown = 0x00000002
41 } MonoThreadApartmentState;
42
43 typedef void (*MonoThreadNotifyPendingExcFunc) (void);
44
45 #define SPECIAL_STATIC_NONE 0
46 #define SPECIAL_STATIC_THREAD 1
47 #define SPECIAL_STATIC_CONTEXT 2
48
49 #ifdef HOST_WIN32
50 typedef SECURITY_ATTRIBUTES WapiSecurityAttributes;
51 typedef LPTHREAD_START_ROUTINE WapiThreadStart;
52 #endif
53
54 typedef struct _MonoInternalThread MonoInternalThread;
55
56 typedef void (*MonoThreadCleanupFunc) (MonoInternalThread* thread);
57
58 MonoInternalThread* mono_thread_create_internal (MonoDomain *domain, gpointer func, gpointer arg, gboolean threadpool_thread, guint32 stack_size) MONO_INTERNAL;
59
60 void mono_threads_install_cleanup (MonoThreadCleanupFunc func) MONO_INTERNAL;
61
62 void ves_icall_System_Threading_Thread_ConstructInternalThread (MonoThread *this_obj) MONO_INTERNAL;
63 HANDLE ves_icall_System_Threading_Thread_Thread_internal(MonoThread *this_obj, MonoObject *start) MONO_INTERNAL;
64 void ves_icall_System_Threading_InternalThread_Thread_free_internal(MonoInternalThread *this_obj, HANDLE thread) MONO_INTERNAL;
65 void ves_icall_System_Threading_Thread_Sleep_internal(gint32 ms) MONO_INTERNAL;
66 gboolean ves_icall_System_Threading_Thread_Join_internal(MonoInternalThread *this_obj, int ms, HANDLE thread) MONO_INTERNAL;
67 gint32 ves_icall_System_Threading_Thread_GetDomainID (void) MONO_INTERNAL;
68 gboolean ves_icall_System_Threading_Thread_Yield (void) MONO_INTERNAL;
69 MonoString* ves_icall_System_Threading_Thread_GetName_internal (MonoInternalThread *this_obj) MONO_INTERNAL;
70 void ves_icall_System_Threading_Thread_SetName_internal (MonoInternalThread *this_obj, MonoString *name) MONO_INTERNAL;
71 MonoObject* ves_icall_System_Threading_Thread_GetCachedCurrentCulture (MonoInternalThread *this_obj) MONO_INTERNAL;
72 void ves_icall_System_Threading_Thread_SetCachedCurrentCulture (MonoThread *this_obj, MonoObject *culture) MONO_INTERNAL;
73 MonoObject* ves_icall_System_Threading_Thread_GetCachedCurrentUICulture (MonoInternalThread *this_obj) MONO_INTERNAL;
74 void ves_icall_System_Threading_Thread_SetCachedCurrentUICulture (MonoThread *this_obj, MonoObject *culture) MONO_INTERNAL;
75 HANDLE ves_icall_System_Threading_Mutex_CreateMutex_internal(MonoBoolean owned, MonoString *name, MonoBoolean *created) MONO_INTERNAL;
76 MonoBoolean ves_icall_System_Threading_Mutex_ReleaseMutex_internal (HANDLE handle ) MONO_INTERNAL;
77 HANDLE ves_icall_System_Threading_Mutex_OpenMutex_internal (MonoString *name, gint32 rights, gint32 *error) MONO_INTERNAL;
78 HANDLE ves_icall_System_Threading_Semaphore_CreateSemaphore_internal (gint32 initialCount, gint32 maximumCount, MonoString *name, MonoBoolean *created) MONO_INTERNAL;
79 gint32 ves_icall_System_Threading_Semaphore_ReleaseSemaphore_internal (HANDLE handle, gint32 releaseCount, MonoBoolean *fail) MONO_INTERNAL;
80 HANDLE ves_icall_System_Threading_Semaphore_OpenSemaphore_internal (MonoString *name, gint32 rights, gint32 *error) MONO_INTERNAL;
81 HANDLE ves_icall_System_Threading_Events_CreateEvent_internal (MonoBoolean manual, MonoBoolean initial, MonoString *name, MonoBoolean *created) MONO_INTERNAL;
82 gboolean ves_icall_System_Threading_Events_SetEvent_internal (HANDLE handle) MONO_INTERNAL;
83 gboolean ves_icall_System_Threading_Events_ResetEvent_internal (HANDLE handle) MONO_INTERNAL;
84 void ves_icall_System_Threading_Events_CloseEvent_internal (HANDLE handle) MONO_INTERNAL;
85 HANDLE ves_icall_System_Threading_Events_OpenEvent_internal (MonoString *name, gint32 rights, gint32 *error) MONO_INTERNAL;
86
87 gboolean ves_icall_System_Threading_WaitHandle_WaitAll_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext) MONO_INTERNAL;
88 gint32 ves_icall_System_Threading_WaitHandle_WaitAny_internal(MonoArray *mono_handles, gint32 ms, gboolean exitContext) MONO_INTERNAL;
89 gboolean ves_icall_System_Threading_WaitHandle_WaitOne_internal(MonoObject *this_obj, HANDLE handle, gint32 ms, gboolean exitContext) MONO_INTERNAL;
90 gboolean ves_icall_System_Threading_WaitHandle_SignalAndWait_Internal (HANDLE toSignal, HANDLE toWait, gint32 ms, gboolean exitContext) MONO_INTERNAL;
91
92 MonoArray* ves_icall_System_Threading_Thread_ByteArrayToRootDomain (MonoArray *arr) MONO_INTERNAL;
93 MonoArray* ves_icall_System_Threading_Thread_ByteArrayToCurrentDomain (MonoArray *arr) MONO_INTERNAL;
94
95 gint32 ves_icall_System_Threading_Interlocked_Increment_Int(gint32 *location) MONO_INTERNAL;
96 gint64 ves_icall_System_Threading_Interlocked_Increment_Long(gint64 *location) MONO_INTERNAL;
97 gint32 ves_icall_System_Threading_Interlocked_Decrement_Int(gint32 *location) MONO_INTERNAL;
98 gint64 ves_icall_System_Threading_Interlocked_Decrement_Long(gint64 * location) MONO_INTERNAL;
99
100 gint32 ves_icall_System_Threading_Interlocked_Exchange_Int(gint32 *location, gint32 value) MONO_INTERNAL;
101 gint64 ves_icall_System_Threading_Interlocked_Exchange_Long(gint64 *location, gint64 value) MONO_INTERNAL;
102 MonoObject *ves_icall_System_Threading_Interlocked_Exchange_Object(MonoObject **location, MonoObject *value) MONO_INTERNAL;
103 gpointer ves_icall_System_Threading_Interlocked_Exchange_IntPtr(gpointer *location, gpointer value) MONO_INTERNAL;
104 gfloat ves_icall_System_Threading_Interlocked_Exchange_Single(gfloat *location, gfloat value) MONO_INTERNAL;
105 gdouble ves_icall_System_Threading_Interlocked_Exchange_Double(gdouble *location, gdouble value) MONO_INTERNAL;
106
107 gint32 ves_icall_System_Threading_Interlocked_CompareExchange_Int(gint32 *location, gint32 value, gint32 comparand) MONO_INTERNAL;
108 gint64 ves_icall_System_Threading_Interlocked_CompareExchange_Long(gint64 *location, gint64 value, gint64 comparand) MONO_INTERNAL;
109 MonoObject *ves_icall_System_Threading_Interlocked_CompareExchange_Object(MonoObject **location, MonoObject *value, MonoObject *comparand) MONO_INTERNAL;
110 gpointer ves_icall_System_Threading_Interlocked_CompareExchange_IntPtr(gpointer *location, gpointer value, gpointer comparand) MONO_INTERNAL;
111 gfloat ves_icall_System_Threading_Interlocked_CompareExchange_Single(gfloat *location, gfloat value, gfloat comparand) MONO_INTERNAL;
112 gdouble ves_icall_System_Threading_Interlocked_CompareExchange_Double(gdouble *location, gdouble value, gdouble comparand) MONO_INTERNAL;
113 MonoObject* ves_icall_System_Threading_Interlocked_CompareExchange_T(MonoObject **location, MonoObject *value, MonoObject *comparand) MONO_INTERNAL;
114 MonoObject* ves_icall_System_Threading_Interlocked_Exchange_T(MonoObject **location, MonoObject *value) MONO_INTERNAL;
115
116 gint32 ves_icall_System_Threading_Interlocked_Add_Int(gint32 *location, gint32 value) MONO_INTERNAL;
117 gint64 ves_icall_System_Threading_Interlocked_Add_Long(gint64 *location, gint64 value) MONO_INTERNAL;
118 gint64 ves_icall_System_Threading_Interlocked_Read_Long(gint64 *location) MONO_INTERNAL;
119
120 gint32 ves_icall_System_Threading_Interlocked_Increment_Int(gint32 *location) MONO_INTERNAL;
121 gint64 ves_icall_System_Threading_Interlocked_Increment_Long(gint64 *location) MONO_INTERNAL;
122
123 gint32 ves_icall_System_Threading_Interlocked_Decrement_Int(gint32 *location) MONO_INTERNAL;
124 gint64 ves_icall_System_Threading_Interlocked_Decrement_Long(gint64 * location) MONO_INTERNAL;
125
126 void ves_icall_System_Threading_Thread_Abort (MonoInternalThread *thread, MonoObject *state) MONO_INTERNAL;
127 void ves_icall_System_Threading_Thread_ResetAbort (void) MONO_INTERNAL;
128 MonoObject* ves_icall_System_Threading_Thread_GetAbortExceptionState (MonoThread *thread) MONO_INTERNAL;
129 void ves_icall_System_Threading_Thread_Suspend (MonoInternalThread *thread) MONO_INTERNAL;
130 void ves_icall_System_Threading_Thread_Resume (MonoThread *thread) MONO_INTERNAL;
131 void ves_icall_System_Threading_Thread_ClrState (MonoInternalThread *thread, guint32 state) MONO_INTERNAL;
132 void ves_icall_System_Threading_Thread_SetState (MonoInternalThread *thread, guint32 state) MONO_INTERNAL;
133 guint32 ves_icall_System_Threading_Thread_GetState (MonoInternalThread *thread) MONO_INTERNAL;
134
135 gint8 ves_icall_System_Threading_Thread_VolatileRead1 (void *ptr) MONO_INTERNAL;
136 gint16 ves_icall_System_Threading_Thread_VolatileRead2 (void *ptr) MONO_INTERNAL;
137 gint32 ves_icall_System_Threading_Thread_VolatileRead4 (void *ptr) MONO_INTERNAL;
138 gint64 ves_icall_System_Threading_Thread_VolatileRead8 (void *ptr) MONO_INTERNAL;
139 void * ves_icall_System_Threading_Thread_VolatileReadIntPtr (void *ptr) MONO_INTERNAL;
140 void * ves_icall_System_Threading_Thread_VolatileReadObject (void *ptr) MONO_INTERNAL;
141 double ves_icall_System_Threading_Thread_VolatileReadDouble (void *ptr) MONO_INTERNAL;
142 float ves_icall_System_Threading_Thread_VolatileReadFloat (void *ptr) MONO_INTERNAL;
143
144 void ves_icall_System_Threading_Thread_VolatileWrite1 (void *ptr, gint8) MONO_INTERNAL;
145 void ves_icall_System_Threading_Thread_VolatileWrite2 (void *ptr, gint16) MONO_INTERNAL;
146 void ves_icall_System_Threading_Thread_VolatileWrite4 (void *ptr, gint32) MONO_INTERNAL;
147 void ves_icall_System_Threading_Thread_VolatileWrite8 (void *ptr, gint64) MONO_INTERNAL;
148 void ves_icall_System_Threading_Thread_VolatileWriteIntPtr (void *ptr, void *) MONO_INTERNAL;
149 void ves_icall_System_Threading_Thread_VolatileWriteObject (void *ptr, MonoObject *) MONO_INTERNAL;
150 void ves_icall_System_Threading_Thread_VolatileWriteFloat (void *ptr, float) MONO_INTERNAL;
151 void ves_icall_System_Threading_Thread_VolatileWriteDouble (void *ptr, double) MONO_INTERNAL;
152
153 gint8 ves_icall_System_Threading_Volatile_Read1 (void *ptr) MONO_INTERNAL;
154 gint16 ves_icall_System_Threading_Volatile_Read2 (void *ptr) MONO_INTERNAL;
155 gint32 ves_icall_System_Threading_Volatile_Read4 (void *ptr) MONO_INTERNAL;
156 gint64 ves_icall_System_Threading_Volatile_Read8 (void *ptr) MONO_INTERNAL;
157 void * ves_icall_System_Threading_Volatile_ReadIntPtr (void *ptr) MONO_INTERNAL;
158 double ves_icall_System_Threading_Volatile_ReadDouble (void *ptr) MONO_INTERNAL;
159 float ves_icall_System_Threading_Volatile_ReadFloat (void *ptr) MONO_INTERNAL;
160 MonoObject* ves_icall_System_Threading_Volatile_Read_T (void *ptr) MONO_INTERNAL;
161
162 void ves_icall_System_Threading_Volatile_Write1 (void *ptr, gint8) MONO_INTERNAL;
163 void ves_icall_System_Threading_Volatile_Write2 (void *ptr, gint16) MONO_INTERNAL;
164 void ves_icall_System_Threading_Volatile_Write4 (void *ptr, gint32) MONO_INTERNAL;
165 void ves_icall_System_Threading_Volatile_Write8 (void *ptr, gint64) MONO_INTERNAL;
166 void ves_icall_System_Threading_Volatile_WriteIntPtr (void *ptr, void *) MONO_INTERNAL;
167 void ves_icall_System_Threading_Volatile_WriteFloat (void *ptr, float) MONO_INTERNAL;
168 void ves_icall_System_Threading_Volatile_WriteDouble (void *ptr, double) MONO_INTERNAL;
169 void ves_icall_System_Threading_Volatile_Write_T (void *ptr, MonoObject *value) MONO_INTERNAL;
170
171 void ves_icall_System_Threading_Thread_MemoryBarrier (void) MONO_INTERNAL;
172 void ves_icall_System_Threading_Thread_Interrupt_internal (MonoInternalThread *this_obj) MONO_INTERNAL;
173 void ves_icall_System_Threading_Thread_SpinWait_nop (void) MONO_INTERNAL;
174
175 MonoInternalThread *mono_thread_internal_current (void) MONO_INTERNAL;
176
177 void mono_thread_internal_stop (MonoInternalThread *thread) MONO_INTERNAL;
178
179 gboolean mono_thread_internal_has_appdomain_ref (MonoInternalThread *thread, MonoDomain *domain) MONO_INTERNAL;
180
181 void mono_thread_internal_reset_abort (MonoInternalThread *thread) MONO_INTERNAL;
182
183 void mono_alloc_special_static_data_free (GHashTable *special_static_fields) MONO_INTERNAL;
184 void mono_special_static_data_free_slot (guint32 offset, guint32 size) MONO_INTERNAL;
185 uint32_t mono_thread_alloc_tls   (MonoReflectionType *type) MONO_INTERNAL;
186 void     mono_thread_destroy_tls (uint32_t tls_offset) MONO_INTERNAL;
187 void     mono_thread_destroy_domain_tls (MonoDomain *domain) MONO_INTERNAL;
188 void mono_thread_free_local_slot_values (int slot, MonoBoolean is_thread_local) MONO_INTERNAL;
189 void mono_thread_current_check_pending_interrupt (void) MONO_INTERNAL;
190
191 void mono_thread_set_state (MonoInternalThread *thread, MonoThreadState state) MONO_INTERNAL;
192 void mono_thread_clr_state (MonoInternalThread *thread, MonoThreadState state) MONO_INTERNAL;
193 gboolean mono_thread_test_state (MonoInternalThread *thread, MonoThreadState test) MONO_INTERNAL;
194
195 void mono_thread_init_apartment_state (void) MONO_INTERNAL;
196 void mono_thread_cleanup_apartment_state (void) MONO_INTERNAL;
197
198 void mono_threads_set_shutting_down (void) MONO_INTERNAL;
199
200 gunichar2* mono_thread_get_name (MonoInternalThread *this_obj, guint32 *name_len) MONO_INTERNAL;
201
202 MONO_API MonoException* mono_thread_get_undeniable_exception (void);
203
204 MonoException* mono_thread_get_and_clear_pending_exception (void) MONO_INTERNAL;
205
206 void mono_thread_set_name_internal (MonoInternalThread *this_obj, MonoString *name, gboolean managed) MONO_INTERNAL;
207
208 void mono_threads_install_notify_pending_exc (MonoThreadNotifyPendingExcFunc func) MONO_INTERNAL;
209
210 MonoObject* mono_thread_get_execution_context (void) MONO_INTERNAL;
211 void mono_thread_set_execution_context (MonoObject *ec) MONO_INTERNAL;
212
213 void mono_runtime_set_has_tls_get (gboolean val) MONO_INTERNAL;
214 gboolean mono_runtime_has_tls_get (void) MONO_INTERNAL;
215
216 int mono_thread_get_abort_signal (void) MONO_INTERNAL;
217
218 void mono_thread_abort_all_other_threads (void) MONO_INTERNAL;
219 void mono_thread_suspend_all_other_threads (void) MONO_INTERNAL;
220 gboolean mono_threads_abort_appdomain_threads (MonoDomain *domain, int timeout) MONO_INTERNAL;
221
222 void mono_thread_push_appdomain_ref (MonoDomain *domain) MONO_INTERNAL;
223 void mono_thread_pop_appdomain_ref (void) MONO_INTERNAL;
224 gboolean mono_thread_has_appdomain_ref (MonoThread *thread, MonoDomain *domain) MONO_INTERNAL;
225
226 void mono_threads_clear_cached_culture (MonoDomain *domain) MONO_INTERNAL;
227
228 MonoException* mono_thread_request_interruption (mono_bool running_managed) MONO_INTERNAL;
229 gboolean mono_thread_interruption_requested (void) MONO_INTERNAL;
230 void mono_thread_interruption_checkpoint (void) MONO_INTERNAL;
231 void mono_thread_force_interruption_checkpoint (void) MONO_INTERNAL;
232 gint32* mono_thread_interruption_request_flag (void) MONO_INTERNAL;
233
234 uint32_t mono_alloc_special_static_data (uint32_t static_type, uint32_t size, uint32_t align, uintptr_t *bitmap, int numbits) MONO_INTERNAL;
235 void*    mono_get_special_static_data   (uint32_t offset) MONO_INTERNAL;
236 gpointer mono_get_special_static_data_for_thread (MonoInternalThread *thread, guint32 offset) MONO_INTERNAL;
237
238 MonoException* mono_thread_resume_interruption (void) MONO_INTERNAL;
239 void mono_threads_perform_thread_dump (void) MONO_INTERNAL;
240 MonoThread *mono_thread_attach_full (MonoDomain *domain, gboolean force_attach) MONO_INTERNAL;
241
242 void mono_thread_init_tls (void) MONO_INTERNAL;
243
244 /* Can't include utils/mono-threads.h because of the THREAD_INFO_TYPE wizardry */
245 void mono_threads_add_joinable_thread (gpointer tid) MONO_INTERNAL;
246 void mono_threads_join_threads (void) MONO_INTERNAL;
247 void mono_thread_join (gpointer tid) MONO_INTERNAL;
248
249 void mono_thread_detach_internal (MonoInternalThread *thread) MONO_INTERNAL;
250
251 #endif /* _MONO_METADATA_THREADS_TYPES_H_ */