[runtime] Get rid of the wapi_thread_interrupt_self () and the has_apc flag, it doesn...
[mono.git] / mono / io-layer / thread-private.h
1 /*
2  * thread-private.h:  Private definitions for thread handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_THREAD_PRIVATE_H_
11 #define _WAPI_THREAD_PRIVATE_H_
12
13 #include <config.h>
14 #include <glib.h>
15 #include <pthread.h>
16 #include <mono/utils/mono-semaphore.h>
17
18 /* There doesn't seem to be a defined symbol for this */
19 #define _WAPI_THREAD_CURRENT (gpointer)0xFFFFFFFE
20 extern gpointer _wapi_thread_duplicate (void);
21
22 extern struct _WapiHandleOps _wapi_thread_ops;
23
24 typedef enum {
25         THREAD_STATE_START,
26         THREAD_STATE_EXITED
27 } WapiThreadState;
28
29 #define INTERRUPTION_REQUESTED_HANDLE (gpointer)0xFFFFFFFE
30
31 struct _WapiHandle_thread
32 {
33         pthread_t id;
34         GPtrArray *owned_mutexes;
35         /* 
36      * Handle this thread waits on. If this is INTERRUPTION_REQUESTED_HANDLE,
37          * it means the thread is interrupted by another thread, and shouldn't enter
38          * a wait.
39          * This also acts as a reference for the handle.
40          */
41         gpointer wait_handle;
42 };
43
44 typedef struct
45 {
46         guint32 (*callback)(gpointer arg);
47         gpointer param;
48 } ApcInfo;
49
50 extern gboolean _wapi_thread_apc_pending (gpointer handle);
51 extern gboolean _wapi_thread_cur_apc_pending (void);
52 extern gboolean _wapi_thread_dispatch_apc_queue (gpointer handle);
53 extern void _wapi_thread_own_mutex (gpointer mutex);
54 extern void _wapi_thread_disown_mutex (gpointer mutex);
55 extern gpointer _wapi_thread_handle_from_id (pthread_t tid);
56 extern void _wapi_thread_cleanup (void);
57
58 #endif /* _WAPI_THREAD_PRIVATE_H_ */