Added missing #include "config.h"
[wine/multimedia.git] / include / thread.h
blob60c422044104d9a2666ceaf7f8163ffdbfd6ab58
1 /*
2 * Thread definitions
4 * Copyright 1996 Alexandre Julliard
5 */
7 #ifndef __WINE_THREAD_H
8 #define __WINE_THREAD_H
10 #include "config.h"
11 #include "k32obj.h"
12 #include "windows.h"
13 #include "winbase.h"
14 #include "winnt.h"
15 #include "selectors.h" /* for SET_FS */
17 #ifdef linux
18 #define HAVE_CLONE_SYSCALL
19 #endif
21 /* This is what we will use on *BSD, once threads using rfork() get
22 * implemented:
24 * #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
25 * #define HAVE_RFORK
26 * #endif
29 #if (defined(HAVE_CLONE_SYSCALL) || defined(HAVE_RFORK)) && !defined(NO_REENTRANT_LIBC)
30 #define USE_THREADS
31 #endif
33 struct _PDB32;
35 /* Thread exception block */
36 typedef struct _TEB
38 void *except; /* 00 Head of exception handling chain */
39 void *stack_top; /* 04 Top of thread stack */
40 void *stack_low; /* 08 Stack low-water mark */
41 HTASK16 htask16; /* 0c Win16 task handle */
42 WORD stack_sel; /* 0e 16-bit stack selector */
43 DWORD selman_list; /* 10 Selector manager list */
44 DWORD user_ptr; /* 14 User pointer */
45 struct _TEB *self; /* 18 Pointer to this structure */
46 WORD flags; /* 1c Flags */
47 WORD mutex_count; /* 1e Win16 mutex count */
48 DWORD debug_context; /* 20 Debug context */
49 DWORD *ppriority; /* 24 Pointer to current priority */
50 HQUEUE16 queue; /* 28 Message queue */
51 WORD pad1; /* 2a */
52 LPVOID *tls_ptr; /* 2c Pointer to TLS array */
53 struct _PDB32 *process; /* 30 owning process (used by NT3.51 applets)*/
54 } TEB;
56 /* Event waiting structure */
57 typedef struct
59 DWORD count; /* Count of valid objects */
60 DWORD signaled; /* Index of signaled object (or WAIT_FAILED)*/
61 BOOL32 wait_all; /* Wait for all objects flag */
62 BOOL32 wait_msg; /* Wait for message flag */
63 K32OBJ *objs[MAXIMUM_WAIT_OBJECTS]; /* Object pointers */
64 int server[MAXIMUM_WAIT_OBJECTS]; /* Server handles */
65 } WAIT_STRUCT;
67 /* Thread database */
68 typedef struct _THDB
70 K32OBJ header; /* 00 Kernel object header */
71 struct _PDB32 *process; /* 08 Process owning this thread */
72 K32OBJ *event; /* 0c Thread event */
73 TEB teb; /* 10 Thread exception block */
74 DWORD flags; /* 44 Flags */
75 DWORD exit_code; /* 48 Termination status */
76 WORD teb_sel; /* 4c Selector to TEB */
77 WORD emu_sel; /* 4e 80387 emulator selector */
78 int thread_errno; /* 50 Per-thread errno (was: unknown) */
79 WAIT_STRUCT *wait_list; /* 54 Event waiting list */
80 int thread_h_errno; /* 50 Per-thread h_errno (was: unknown) */
81 void *ring0_thread; /* 5c Pointer to ring 0 thread */
82 void *ptdbx; /* 60 Pointer to TDBX structure */
83 void *stack_base; /* 64 Base of the stack */
84 void *exit_stack; /* 68 Stack pointer on thread exit */
85 void *emu_data; /* 6c Related to 80387 emulation */
86 DWORD last_error; /* 70 Last error code */
87 void *debugger_CB; /* 74 Debugger context block */
88 DWORD debug_thread; /* 78 Thread debugging this one (?) */
89 void *pcontext; /* 7c Thread register context */
90 DWORD cur_stack; /* 80 Current stack (was: unknown) */
91 DWORD unknown3[2]; /* 84 Unknown */
92 WORD current_ss; /* 8c Another 16-bit stack selector */
93 WORD pad2; /* 8e */
94 void *ss_table; /* 90 Pointer to info about 16-bit stack */
95 WORD thunk_ss; /* 94 Yet another 16-bit stack selector */
96 WORD pad3; /* 96 */
97 LPVOID tls_array[64]; /* 98 Thread local storage */
98 DWORD delta_priority; /* 198 Priority delta */
99 DWORD unknown4[7]; /* 19c Unknown */
100 void *create_data; /* 1b8 Pointer to creation structure */
101 DWORD suspend_count; /* 1bc SuspendThread() counter */
102 void *entry_point; /* 1c0 Thread entry point (was: unknown) */
103 void *entry_arg; /* 1c4 Entry point arg (was: unknown) */
104 int unix_pid; /* 1c8 Unix thread pid (was: unknown) */
105 K32OBJ *mutex_list; /* 1cc List of owned mutex (was: unknown)*/
106 DWORD unknown5[2]; /* 1d0 Unknown */
107 DWORD sys_count[4]; /* 1d8 Syslevel mutex entry counters */
108 CRITICAL_SECTION *sys_mutex[4];/* 1e8 Syslevel mutex pointers */
109 DWORD unknown6[2]; /* 1f8 Unknown */
110 /* The following are Wine-specific fields */
111 CONTEXT context; /* 200 Thread context */
112 WAIT_STRUCT wait_struct; /* Event wait structure */
113 int socket; /* Socket for server communication */
114 unsigned int seq; /* Server sequence number */
115 void *server_tid; /* Server id for this thread */
116 } THDB;
118 /* Thread queue entry */
119 typedef struct _THREAD_ENTRY
121 THDB *thread;
122 struct _THREAD_ENTRY *next;
123 } THREAD_ENTRY;
125 /* A thread queue is a circular list; a THREAD_QUEUE is a pointer */
126 /* to the end of the queue (i.e. where we add elements) */
127 typedef THREAD_ENTRY *THREAD_QUEUE;
129 /* THDB <-> Thread id conversion macros */
130 #define THREAD_OBFUSCATOR ((DWORD)0xdeadbeef)
131 #define THREAD_ID_TO_THDB(id) ((THDB *)((id) ^ THREAD_OBFUSCATOR))
132 #define THDB_TO_THREAD_ID(thdb) ((DWORD)(thdb) ^ THREAD_OBFUSCATOR)
134 /* The pseudo handle value returned by GetCurrentThread */
135 #define CURRENT_THREAD_PSEUDOHANDLE 0xfffffffe
137 #ifdef __i386__
138 /* On the i386, the current thread is in the %fs register */
139 # define SET_CUR_THREAD(thdb) SET_FS((thdb)->teb_sel)
140 #else
141 extern THDB *pCurrentThread;
142 # define SET_CUR_THREAD(thdb) (pCurrentThread = (thdb))
143 #endif /* __i386__ */
146 /* scheduler/thread.c */
147 extern THDB *THREAD_Create( struct _PDB32 *pdb, DWORD stack_size,
148 BOOL32 alloc_stack16,
149 int *server_thandle, int *server_phandle,
150 LPTHREAD_START_ROUTINE start_addr, LPVOID param );
151 extern THDB *THREAD_Current(void);
152 extern BOOL32 THREAD_IsWin16( THDB *thdb );
153 extern THDB *THREAD_IdToTHDB( DWORD id );
154 extern void THREAD_Start( THDB *thdb );
155 extern THDB *THREAD_GetPtr( HANDLE32 handle, DWORD access, int *server_handle );
156 extern void THREAD_AddQueue( THREAD_QUEUE *queue, THDB *thread );
157 extern void THREAD_RemoveQueue( THREAD_QUEUE *queue, THDB *thread );
158 extern DWORD THREAD_TlsAlloc( THDB *thread );
160 /* scheduler/event.c */
161 extern void EVENT_Set( K32OBJ *obj );
162 extern K32OBJ *EVENT_Create( BOOL32 manual_reset, BOOL32 initial_state );
164 /* scheduler/mutex.c */
165 extern void MUTEX_Abandon( K32OBJ *obj );
167 /* scheduler/synchro.c */
168 extern void SYNC_WaitForCondition( WAIT_STRUCT *wait, DWORD timeout );
169 extern void SYNC_WakeUp( THREAD_QUEUE *queue, DWORD max );
170 extern void SYNC_MsgWakeUp( THDB *thdb );
171 extern void SYNC_SetupSignals(void);
172 extern DWORD SYNC_DoWait( DWORD count, const HANDLE32 *handles,
173 BOOL32 wait_all, DWORD timeout,
174 BOOL32 alertable, BOOL32 wait_msg );
177 /* scheduler/sysdeps.c */
178 extern int SYSDEPS_SpawnThread( THDB *thread );
179 extern void SYSDEPS_ExitThread(void);
180 extern TEB * WINAPI NtCurrentTeb(void);
182 #endif /* __WINE_THREAD_H */