[System] UriKind.RelativeOrAbsolute workaround.
[mono.git] / mono / utils / mono-threads.h
1 /*
2  * mono-threads.h: Low-level threading
3  *
4  * Author:
5  *      Rodrigo Kumpera (kumpera@gmail.com)
6  *
7  * (C) 2011 Novell, Inc
8  */
9
10 #ifndef __MONO_THREADS_H__
11 #define __MONO_THREADS_H__
12
13 #include <mono/utils/mono-semaphore.h>
14 #include <mono/utils/mono-stack-unwinding.h>
15 #include <mono/utils/mono-linked-list-set.h>
16 #include <mono/utils/mono-mutex.h>
17 #include <mono/utils/mono-tls.h>
18 #include <mono/utils/mono-threads-coop.h>
19
20 #include <glib.h>
21 #include <config.h>
22 #ifdef HOST_WIN32
23
24 #include <windows.h>
25
26 typedef DWORD MonoNativeThreadId;
27 typedef HANDLE MonoNativeThreadHandle; /* unused */
28
29 typedef DWORD mono_native_thread_return_t;
30
31 #define MONO_NATIVE_THREAD_ID_TO_UINT(tid) (tid)
32 #define MONO_UINT_TO_NATIVE_THREAD_ID(tid) ((MonoNativeThreadId)(tid))
33
34 #else
35
36 #include <pthread.h>
37
38 #if defined(__MACH__)
39 #include <mono/utils/mach-support.h>
40
41 typedef thread_port_t MonoNativeThreadHandle;
42
43 #else
44
45 #include <unistd.h>
46
47 typedef pid_t MonoNativeThreadHandle;
48
49 #endif /* defined(__MACH__) */
50
51 typedef pthread_t MonoNativeThreadId;
52
53 typedef void* mono_native_thread_return_t;
54
55 #define MONO_NATIVE_THREAD_ID_TO_UINT(tid) (gsize)(tid)
56 #define MONO_UINT_TO_NATIVE_THREAD_ID(tid) (MonoNativeThreadId)(gsize)(tid)
57
58 #endif /* #ifdef HOST_WIN32 */
59
60 /*
61 THREAD_INFO_TYPE is a way to make the mono-threads module parametric - or sort of.
62 The GC using mono-threads might extend the MonoThreadInfo struct to add its own
63 data, this avoid a pointer indirection on what is on a lot of hot paths.
64
65 But extending MonoThreadInfo has de disavantage that all functions here return type
66 would require a cast, something like the following:
67
68 typedef struct {
69         MonoThreadInfo info;
70         int stuff;
71 }  MyThreadInfo;
72
73 ...
74 ((MyThreadInfo*)mono_thread_info_current ())->stuff = 1;
75
76 While porting sgen to use mono-threads, the number of casts required was too much and
77 code ended up looking horrible. So we use this cute little hack. The idea is that
78 whomever is including this header can set the expected type to be used by functions here
79 and reduce the number of casts drastically.
80
81 */
82 #ifndef THREAD_INFO_TYPE
83 #define THREAD_INFO_TYPE MonoThreadInfo
84 #endif
85
86 /* Mono Threads internal configuration knows*/
87
88 /* Logging - enable them below if you need specific logging for the category you need */
89 #define MOSTLY_ASYNC_SAFE_PRINTF(...) do { \
90         char __buff[1024];      __buff [0] = '\0'; \
91         g_snprintf (__buff, sizeof (__buff), __VA_ARGS__);      \
92         write (1, __buff, strlen (__buff));     \
93 } while (0)
94
95
96 #if 1
97 #define THREADS_DEBUG(...)
98 #else
99 #define THREADS_DEBUG MOSTLY_ASYNC_SAFE_PRINTF
100 #endif
101
102 #if 1
103 #define THREADS_STW_DEBUG(...)
104 #else
105 #define THREADS_STW_DEBUG MOSTLY_ASYNC_SAFE_PRINTF
106 #endif
107
108 #if 1
109 #define THREADS_SUSPEND_DEBUG(...)
110 #else
111 #define THREADS_SUSPEND_DEBUG MOSTLY_ASYNC_SAFE_PRINTF
112 #endif
113
114 #if 1
115 #define THREADS_STATE_MACHINE_DEBUG(...)
116 #else
117 #define THREADS_STATE_MACHINE_DEBUG MOSTLY_ASYNC_SAFE_PRINTF
118 #endif
119
120 /* If this is defined, use the signals backed on Mach. Debug only as signals can't be made usable on OSX. */
121 // #define USE_SIGNALS_ON_MACH
122
123
124 #if defined (USE_COOP_GC)
125 #define USE_COOP_BACKEND
126 #define MONO_THREADS_PLATFORM_REQUIRES_UNIFIED_SUSPEND 1
127
128 #elif defined (_POSIX_VERSION) || defined (__native_client__)
129 #define MONO_THREADS_PLATFORM_REQUIRES_UNIFIED_SUSPEND 0
130
131 #if defined (__MACH__) && !defined (USE_SIGNALS_ON_MACH)
132 #define USE_MACH_BACKEND
133 #else
134 #define USE_POSIX_BACKEND
135 #endif
136
137 #elif HOST_WIN32
138 #define MONO_THREADS_PLATFORM_REQUIRES_UNIFIED_SUSPEND 0
139 #define USE_WINDOWS_BACKEND
140
141 #endif
142
143 enum {
144         STATE_STARTING                          = 0x00,
145         STATE_RUNNING                           = 0x01,
146         STATE_DETACHED                          = 0x02,
147
148         STATE_ASYNC_SUSPENDED                   = 0x03,
149         STATE_SELF_SUSPENDED                    = 0x04,
150         STATE_ASYNC_SUSPEND_REQUESTED   = 0x05,
151         STATE_SELF_SUSPEND_REQUESTED    = 0x06,
152         STATE_BLOCKING                                  = 0x07,
153         STATE_BLOCKING_AND_SUSPENDED    = 0x8,
154
155         STATE_MAX                                               = 0x08,
156
157         THREAD_STATE_MASK                       = 0x00FF,
158         THREAD_SUSPEND_COUNT_MASK       = 0xFF00,
159         THREAD_SUSPEND_COUNT_SHIFT      = 8,
160         THREAD_SUSPEND_COUNT_MAX        = 0xFF,
161
162         SELF_SUSPEND_STATE_INDEX = 0,
163         ASYNC_SUSPEND_STATE_INDEX = 1,
164 };
165
166 /*
167  * This enum tells which async thread service corresponds to which bit.
168  */
169 typedef enum {
170         MONO_SERVICE_REQUEST_SAMPLE = 1,
171 } MonoAsyncJob;
172
173 typedef struct {
174         MonoLinkedListSetNode node;
175         guint32 small_id; /*Used by hazard pointers */
176         MonoNativeThreadHandle native_handle; /* Valid on mach and android */
177         int thread_state;
178
179         /*Tells if this thread was created by the runtime or not.*/
180         gboolean runtime_thread;
181
182         /* Tells if this thread should be ignored or not by runtime services such as GC and profiling */
183         gboolean tools_thread;
184
185         /* Max stack bounds, all valid addresses must be between [stack_start_limit, stack_end[ */
186         void *stack_start_limit, *stack_end;
187
188         /* suspend machinery, fields protected by suspend_semaphore */
189         MonoSemType suspend_semaphore;
190         int suspend_count;
191
192         MonoSemType resume_semaphore;
193
194         /* only needed by the posix backend */ 
195 #if defined(USE_POSIX_BACKEND)
196         MonoSemType finish_resume_semaphore;
197         gboolean syscall_break_signal;
198         gboolean suspend_can_continue;
199         int signal;
200
201 #endif
202
203         /*In theory, only the posix backend needs this, but having it on mach/win32 simplifies things a lot.*/
204         MonoThreadUnwindState thread_saved_state [2]; //0 is self suspend, 1 is async suspend.
205
206         /*async call machinery, thread MUST be suspended before accessing those fields*/
207         void (*async_target)(void*);
208         void *user_data;
209
210         /*
211         If true, this thread is running a critical region of code and cannot be suspended.
212         A critical session is implicitly started when you call mono_thread_info_safe_suspend_sync
213         and is ended when you call either mono_thread_info_resume or mono_thread_info_finish_suspend.
214         */
215         gboolean inside_critical_region;
216
217         /*
218          * If TRUE, the thread is in async context. Code can use this information to avoid async-unsafe
219          * operations like locking without having to pass an 'async' parameter around.
220          */
221         gboolean is_async_context;
222
223         gboolean create_suspended;
224
225         /* Semaphore used to implement CREATE_SUSPENDED */
226         MonoSemType create_suspended_sem;
227
228         /*
229          * Values of TLS variables for this thread.
230          * This can be used to obtain the values of TLS variable for threads
231          * other than the current one.
232          */
233         gpointer tls [TLS_KEY_NUM];
234
235         /* IO layer handle for this thread */
236         /* Set when the thread is started, or in _wapi_thread_duplicate () */
237         HANDLE handle;
238
239         /* Asynchronous service request. This flag is meant to be consumed by the multiplexing signal handlers to discover what sort of work they need to do.
240          * Use the mono_threads_add_async_job and mono_threads_consume_async_jobs APIs to modify this flag.
241          * In the future the signaling should be part of the API, but for now, it's only for massaging the bits.
242          */
243         volatile gint32 service_requests;
244
245         void *jit_data;
246 } MonoThreadInfo;
247
248 typedef struct {
249         void* (*thread_register)(THREAD_INFO_TYPE *info, void *baseaddr);
250         /*
251         This callback is called with @info still on the thread list.
252         This call is made while holding the suspend lock, so don't do callbacks.
253         SMR remains functional as its small_id has not been reclaimed.
254         */
255         void (*thread_unregister)(THREAD_INFO_TYPE *info);
256         /*
257         This callback is called right before thread_unregister. This is called
258         without any locks held so it's the place for complicated cleanup.
259
260         The thread must remain operational between this call and thread_unregister.
261         It must be possible to successfully suspend it after thread_unregister completes.
262         */
263         void (*thread_detach)(THREAD_INFO_TYPE *info);
264         void (*thread_attach)(THREAD_INFO_TYPE *info);
265         gboolean (*mono_method_is_critical) (void *method);
266         gboolean (*mono_thread_in_critical_region) (THREAD_INFO_TYPE *info);
267 } MonoThreadInfoCallbacks;
268
269 typedef struct {
270         void (*setup_async_callback) (MonoContext *ctx, void (*async_cb)(void *fun), gpointer user_data);
271         gboolean (*thread_state_init_from_sigctx) (MonoThreadUnwindState *state, void *sigctx);
272         gboolean (*thread_state_init_from_handle) (MonoThreadUnwindState *tctx, MonoThreadInfo *info);
273 } MonoThreadInfoRuntimeCallbacks;
274
275 //Not using 0 and 1 to ensure callbacks are not returning bad data
276 typedef enum {
277         MonoResumeThread = 0x1234,
278         KeepSuspended = 0x4321,
279 } SuspendThreadResult;
280
281 typedef SuspendThreadResult (*MonoSuspendThreadCallback) (THREAD_INFO_TYPE *info, gpointer user_data);
282
283 static inline gboolean
284 mono_threads_filter_tools_threads (THREAD_INFO_TYPE *info)
285 {
286         return !((MonoThreadInfo*)info)->tools_thread;
287 }
288
289 /*
290 Requires the world to be stoped
291 */
292 #define FOREACH_THREAD(thread) MONO_LLS_FOREACH_FILTERED (mono_thread_info_list_head (), thread, mono_threads_filter_tools_threads, THREAD_INFO_TYPE*)
293 #define END_FOREACH_THREAD MONO_LLS_END_FOREACH
294
295 /*
296 Snapshot iteration.
297 */
298 #define FOREACH_THREAD_SAFE(thread) MONO_LLS_FOREACH_FILTERED_SAFE (mono_thread_info_list_head (), thread, mono_threads_filter_tools_threads, THREAD_INFO_TYPE*)
299 #define END_FOREACH_THREAD_SAFE MONO_LLS_END_FOREACH_SAFE
300
301 #define mono_thread_info_get_tid(info) ((MonoNativeThreadId)((MonoThreadInfo*)info)->node.key)
302 #define mono_thread_info_set_tid(info, val) do { ((MonoThreadInfo*)(info))->node.key = (uintptr_t)(val); } while (0)
303
304 /*
305  * @thread_info_size is sizeof (GcThreadInfo), a struct the GC defines to make it possible to have
306  * a single block with info from both camps. 
307  */
308 void
309 mono_threads_init (MonoThreadInfoCallbacks *callbacks, size_t thread_info_size);
310
311 void
312 mono_threads_runtime_init (MonoThreadInfoRuntimeCallbacks *callbacks);
313
314 MonoThreadInfoRuntimeCallbacks *
315 mono_threads_get_runtime_callbacks (void);
316
317 int
318 mono_thread_info_register_small_id (void);
319
320 THREAD_INFO_TYPE *
321 mono_thread_info_attach (void *baseptr);
322
323 void
324 mono_thread_info_detach (void);
325
326 gboolean
327 mono_thread_info_is_exiting (void);
328
329 THREAD_INFO_TYPE *
330 mono_thread_info_current (void);
331
332 THREAD_INFO_TYPE*
333 mono_thread_info_current_unchecked (void);
334
335 int
336 mono_thread_info_get_small_id (void);
337
338 MonoLinkedListSet*
339 mono_thread_info_list_head (void);
340
341 THREAD_INFO_TYPE*
342 mono_thread_info_lookup (MonoNativeThreadId id);
343
344 THREAD_INFO_TYPE*
345 mono_thread_info_safe_suspend_sync (MonoNativeThreadId tid, gboolean interrupt_kernel);
346
347 gboolean
348 mono_thread_info_resume (MonoNativeThreadId tid);
349
350 void
351 mono_thread_info_set_name (MonoNativeThreadId tid, const char *name);
352
353 void
354 mono_thread_info_safe_suspend_and_run (MonoNativeThreadId id, gboolean interrupt_kernel, MonoSuspendThreadCallback callback, gpointer user_data);
355
356 //XXX new API, fix the world
357 void
358 mono_thread_info_begin_self_suspend (void);
359
360 void
361 mono_thread_info_end_self_suspend (void);
362
363 //END of new API
364
365 gboolean
366 mono_thread_info_unified_management_enabled (void);
367
368 void
369 mono_thread_info_setup_async_call (THREAD_INFO_TYPE *info, void (*target_func)(void*), void *user_data);
370
371 void
372 mono_thread_info_suspend_lock (void);
373
374 void
375 mono_thread_info_suspend_unlock (void);
376
377 void
378 mono_thread_info_abort_socket_syscall_for_close (MonoNativeThreadId tid);
379
380 void
381 mono_thread_info_set_is_async_context (gboolean async_context);
382
383 gboolean
384 mono_thread_info_is_async_context (void);
385
386 void
387 mono_thread_info_get_stack_bounds (guint8 **staddr, size_t *stsize);
388
389 gboolean
390 mono_thread_info_yield (void);
391
392 gpointer
393 mono_thread_info_tls_get (THREAD_INFO_TYPE *info, MonoTlsKey key);
394
395 void
396 mono_thread_info_tls_set (THREAD_INFO_TYPE *info, MonoTlsKey key, gpointer value);
397
398 void
399 mono_thread_info_exit (void);
400
401 HANDLE
402 mono_thread_info_open_handle (void);
403
404 gpointer
405 mono_thread_info_prepare_interrupt (HANDLE thread_handle);
406
407 void
408 mono_thread_info_finish_interrupt (gpointer wait_handle);
409
410 void
411 mono_thread_info_interrupt (HANDLE thread_handle);
412
413 void
414 mono_thread_info_self_interrupt (void);
415
416 void
417 mono_thread_info_clear_interruption (void);
418
419 gboolean
420 mono_thread_info_is_live (THREAD_INFO_TYPE *info);
421
422 HANDLE
423 mono_threads_create_thread (LPTHREAD_START_ROUTINE start, gpointer arg, guint32 stack_size, guint32 creation_flags, MonoNativeThreadId *out_tid);
424
425 int
426 mono_threads_get_max_stack_size (void);
427
428 HANDLE
429 mono_threads_open_thread_handle (HANDLE handle, MonoNativeThreadId tid);
430
431 /*
432 This is the async job submission/consumption API.
433 XXX: This is a PROVISIONAL API only meant to be used by the statistical profiler.
434 If you want to use/extend it anywhere else, understand that you'll have to do some API design work to better fit this puppy.
435 */
436 gboolean
437 mono_threads_add_async_job (THREAD_INFO_TYPE *info, MonoAsyncJob job);
438
439 MonoAsyncJob
440 mono_threads_consume_async_jobs (void);
441
442 MONO_API void
443 mono_threads_attach_tools_thread (void);
444
445
446 #if !defined(HOST_WIN32)
447
448 /*Use this instead of pthread_kill */
449 int
450 mono_threads_pthread_kill (THREAD_INFO_TYPE *info, int signum);
451
452 #endif /* !defined(HOST_WIN32) */
453
454 /* Plartform specific functions DON'T use them */
455 void mono_threads_init_platform (void); //ok
456 gboolean mono_threads_core_suspend (THREAD_INFO_TYPE *info, gboolean interrupt_kernel);
457 gboolean mono_threads_core_resume (THREAD_INFO_TYPE *info);
458 void mono_threads_platform_register (THREAD_INFO_TYPE *info); //ok
459 void mono_threads_platform_free (THREAD_INFO_TYPE *info);
460 void mono_threads_core_interrupt (THREAD_INFO_TYPE *info);
461 void mono_threads_core_abort_syscall (THREAD_INFO_TYPE *info);
462 gboolean mono_threads_core_needs_abort_syscall (void);
463 HANDLE mono_threads_core_create_thread (LPTHREAD_START_ROUTINE start, gpointer arg, guint32 stack_size, guint32 creation_flags, MonoNativeThreadId *out_tid);
464 void mono_threads_core_resume_created (THREAD_INFO_TYPE *info, MonoNativeThreadId tid);
465 void mono_threads_core_get_stack_bounds (guint8 **staddr, size_t *stsize);
466 gboolean mono_threads_core_yield (void);
467 void mono_threads_core_exit (int exit_code);
468 void mono_threads_core_unregister (THREAD_INFO_TYPE *info);
469 HANDLE mono_threads_core_open_handle (void);
470 HANDLE mono_threads_core_open_thread_handle (HANDLE handle, MonoNativeThreadId tid);
471 void mono_threads_core_set_name (MonoNativeThreadId tid, const char *name);
472
473 void mono_threads_core_begin_global_suspend (void);
474 void mono_threads_core_end_global_suspend (void);
475
476 /* Internal API between mono-threads and its backends. */
477
478 /* Backend functions - a backend must implement all of the following */
479 /*
480 This is called very early in the runtime, it cannot access any runtime facilities.
481
482 */
483 void mono_threads_init_platform (void); //ok
484
485 /*
486 This begins async suspend. This function must do the following:
487
488 -Ensure the target will EINTR any syscalls if @interrupt_kernel is true
489 -Call mono_threads_transition_finish_async_suspend as part of its async suspend.
490 -Register the thread for pending suspend with mono_threads_add_to_pending_operation_set if needed.
491
492 If begin suspend fails the thread must be left uninterrupted and resumed.
493 */
494 gboolean mono_threads_core_begin_async_suspend (THREAD_INFO_TYPE *info, gboolean interrupt_kernel);
495
496 /*
497 This verifies the outcome of an async suspend operation.
498
499 Some targets, such as posix, verify suspend results assynchronously. Suspend results must be
500 available (in a non blocking way) after mono_threads_wait_pending_operations completes.
501 */
502 gboolean mono_threads_core_check_suspend_result (THREAD_INFO_TYPE *info);
503
504 /*
505 This begins async resume. This function must do the following:
506
507 - Install an async target if one was requested.
508 - Notify the target to resume.
509 - Register the thread for pending ack with mono_threads_add_to_pending_operation_set if needed.
510 */
511 gboolean mono_threads_core_begin_async_resume (THREAD_INFO_TYPE *info);
512
513 void mono_threads_platform_register (THREAD_INFO_TYPE *info); //ok
514 void mono_threads_platform_free (THREAD_INFO_TYPE *info);
515 void mono_threads_core_abort_syscall (THREAD_INFO_TYPE *info);
516 gboolean mono_threads_core_needs_abort_syscall (void);
517 HANDLE mono_threads_core_create_thread (LPTHREAD_START_ROUTINE start, gpointer arg, guint32 stack_size, guint32 creation_flags, MonoNativeThreadId *out_tid);
518 void mono_threads_core_resume_created (THREAD_INFO_TYPE *info, MonoNativeThreadId tid);
519 void mono_threads_core_get_stack_bounds (guint8 **staddr, size_t *stsize);
520 gboolean mono_threads_core_yield (void);
521 void mono_threads_core_exit (int exit_code);
522 void mono_threads_core_unregister (THREAD_INFO_TYPE *info);
523 HANDLE mono_threads_core_open_handle (void);
524 HANDLE mono_threads_core_open_thread_handle (HANDLE handle, MonoNativeThreadId tid);
525 void mono_threads_core_set_name (MonoNativeThreadId tid, const char *name);
526 gpointer mono_threads_core_prepare_interrupt (HANDLE thread_handle);
527 void mono_threads_core_finish_interrupt (gpointer wait_handle);
528 void mono_threads_core_self_interrupt (void);
529 void mono_threads_core_clear_interruption (void);
530
531 MonoNativeThreadId mono_native_thread_id_get (void);
532
533 gboolean mono_native_thread_id_equals (MonoNativeThreadId id1, MonoNativeThreadId id2);
534
535 gboolean
536 mono_native_thread_create (MonoNativeThreadId *tid, gpointer func, gpointer arg);
537
538 /*Mach specific internals */
539 void mono_threads_init_dead_letter (void);
540 void mono_threads_install_dead_letter (void);
541
542 /* mono-threads internal API used by the backends. */
543 /*
544 This tells the suspend initiator that we completed suspend and will now be waiting for resume.
545 */
546 void mono_threads_notify_initiator_of_suspend (THREAD_INFO_TYPE* info);
547 /*
548 This tells the resume initiator that we completed resume duties and will return to runnable state.
549 */
550 void mono_threads_notify_initiator_of_resume (THREAD_INFO_TYPE* info);
551
552 /*
553 This tells the resume initiator that we completed abort duties and will return to previous state.
554 */
555 void mono_threads_notify_initiator_of_abort (THREAD_INFO_TYPE* info);
556
557 /* Thread state machine functions */
558
559 typedef enum {
560         ResumeError,
561         ResumeOk,
562         ResumeInitSelfResume,
563         ResumeInitAsyncResume,
564         ResumeInitBlockingResume,
565 } MonoResumeResult;
566
567 typedef enum {
568         SelfSuspendResumed,
569         SelfSuspendWait,
570         SelfSuspendNotifyAndWait,
571 } MonoSelfSupendResult;
572
573 typedef enum {
574         AsyncSuspendAlreadySuspended,
575         AsyncSuspendWait,
576         AsyncSuspendInitSuspend,
577 } MonoRequestAsyncSuspendResult;
578
579 typedef enum {
580         DoBlockingContinue, //in blocking mode, continue
581         DoBlockingPollAndRetry, //async suspend raced blocking and won, pool and retry
582 } MonoDoBlockingResult;
583
584 typedef enum {
585         DoneBlockingAborted, //blocking was aborted and not properly restored, poll the state
586         DoneBlockingOk, //exited blocking fine
587         DoneBlockingWait, //thread should end suspended
588 } MonoDoneBlockingResult;
589
590
591 typedef enum {
592         AbortBlockingIgnore, //Ignore
593         AbortBlockingIgnoreAndPoll, //Ignore and pool
594         AbortBlockingOk, //Abort worked
595         AbortBlockingOkAndPool, //Abort worked, but pool before
596 } MonoAbortBlockingResult;
597
598
599 void mono_threads_transition_attach (THREAD_INFO_TYPE* info);
600 gboolean mono_threads_transition_detach (THREAD_INFO_TYPE *info);
601 void mono_threads_transition_request_self_suspension (THREAD_INFO_TYPE *info);
602 MonoRequestAsyncSuspendResult mono_threads_transition_request_async_suspension (THREAD_INFO_TYPE *info);
603 MonoSelfSupendResult mono_threads_transition_state_poll (THREAD_INFO_TYPE *info);
604 MonoResumeResult mono_threads_transition_request_resume (THREAD_INFO_TYPE* info);
605 gboolean mono_threads_transition_finish_async_suspend (THREAD_INFO_TYPE* info);
606 void mono_threads_transition_async_suspend_compensation (THREAD_INFO_TYPE* info);
607 MonoDoBlockingResult mono_threads_transition_do_blocking (THREAD_INFO_TYPE* info);
608 MonoDoneBlockingResult mono_threads_transition_done_blocking (THREAD_INFO_TYPE* info);
609 MonoAbortBlockingResult mono_threads_transition_abort_blocking (THREAD_INFO_TYPE* info);
610
611 MonoThreadUnwindState* mono_thread_info_get_suspend_state (THREAD_INFO_TYPE *info);
612
613
614 void mono_thread_info_wait_for_resume (THREAD_INFO_TYPE *info);
615 /* Advanced suspend API, used for suspending multiple threads as once. */
616 gboolean mono_thread_info_is_running (THREAD_INFO_TYPE *info);
617 gboolean mono_thread_info_is_live (THREAD_INFO_TYPE *info);
618 int mono_thread_info_suspend_count (THREAD_INFO_TYPE *info);
619 int mono_thread_info_current_state (THREAD_INFO_TYPE *info);
620
621 gboolean mono_thread_info_in_critical_location (THREAD_INFO_TYPE *info);
622 gboolean mono_thread_info_begin_suspend (THREAD_INFO_TYPE *info, gboolean interrupt_kernel);
623 gboolean mono_thread_info_begin_resume (THREAD_INFO_TYPE *info);
624
625
626 void mono_threads_add_to_pending_operation_set (THREAD_INFO_TYPE* info); //XXX rename to something to reflect the fact that this is used for both suspend and resume
627 gboolean mono_threads_wait_pending_operations (void);
628 void mono_threads_begin_global_suspend (void);
629 void mono_threads_end_global_suspend (void);
630
631 #endif /* __MONO_THREADS_H__ */