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