Do not allocate any USER data on the system heap.
[wine/multimedia.git] / include / thread.h
bloba3526b168496195152ccfbbc084d7ea45d1776c7
1 /*
2 * Thread definitions
4 * Copyright 1996 Alexandre Julliard
5 */
7 #ifndef __WINE_THREAD_H
8 #define __WINE_THREAD_H
10 #include "config.h"
12 #include "ntdef.h" /* UNICODE_STRING */
13 #include "wine/windef16.h"
15 struct _PDB;
16 struct __EXCEPTION_FRAME;
17 struct _SECURITY_ATTRIBUTES;
18 struct tagSYSLEVEL;
19 struct server_buffer_info;
21 /* Thread exception block
23 flags in the comment:
24 1-- win95 field
25 d-- win95 debug version
26 -2- nt field
27 --3 wine special
28 --n wine unused
29 !-- or -!- likely or observed collision
30 more problems (collected from mailing list):
31 psapi.dll 0x10/0x30 (expects nt fields)
32 ie4 0x40
33 PESHiELD 0x23/0x30 (win95)
35 typedef struct _TEB
37 /* start of NT_TIB */
38 struct __EXCEPTION_FRAME *except; /* 12- 00 Head of exception handling chain */
39 void *stack_top; /* 12- 04 Top of thread stack */
40 void *stack_low; /* 12- 08 Stack low-water mark */
41 HTASK16 htask16; /* 1-- 0c Win16 task handle */
42 WORD stack_sel; /* 1-- 0e 16-bit stack selector */
43 DWORD selman_list; /* 1-n 10 Selector manager list */
44 DWORD user_ptr; /* 12n 14 User pointer */
45 /* end of NT_TIB */
46 struct _TEB *self; /* 12- 18 Pointer to this structure */
47 WORD tibflags; /* 1!n 1c Flags (NT: EnvironmentPointer) */
48 WORD mutex_count; /* 1-n 1e Win16 mutex count */
49 void *pid; /* !2- 20 Process id (win95: debug context) */
50 void *tid; /* -2- 24 Thread id */
51 HQUEUE16 queue; /* 1!- 28 Message queue (NT: DWORD ActiveRpcHandle)*/
52 WORD pad1; /* --n 2a */
53 LPVOID *tls_ptr; /* 1-- 2c Pointer to TLS array */
54 struct _PDB *process; /* 12- 30 owning process (win95: PDB; nt: NTPEB !!) */
55 DWORD flags; /* 1-n 34 */
56 DWORD exit_code; /* 1-- 38 Termination status */
57 WORD teb_sel; /* 1-- 3c Selector to TEB */
58 WORD emu_sel; /* 1-n 3e 80387 emulator selector */
59 DWORD unknown1; /* --n 40 */
60 DWORD unknown2; /* --n 44 */
61 void (*startup)(void); /* --3 48 Thread startup routine */
62 int thread_errno; /* --3 4c Per-thread errno (was: ring0_thread) */
63 int thread_h_errno; /* --3 50 Per-thread h_errno (was: ptr to tdbx structure) */
64 void *stack_base; /* 1-- 54 Base of the stack */
65 void *signal_stack; /* --3 58 Signal stack (was: exit_stack) */
66 void *emu_data; /* --n 5c Related to 80387 emulation */
67 DWORD last_error; /* 1-- 60 Last error code */
68 HANDLE debug_cb; /* 1-n 64 Debugger context block */
69 DWORD debug_thread; /* 1-n 68 Thread debugging this one (?) */
70 void *pcontext; /* 1-n 6c Thread register context */
71 DWORD cur_stack; /* --3 70 Current stack (was: unknown) */
72 DWORD ThunkConnect; /* 1-n 74 */
73 DWORD NegStackBase; /* 1-n 78 */
74 WORD current_ss; /* 1-n 7c Another 16-bit stack selector */
75 WORD pad2; /* --n 7e */
76 void *ss_table; /* --n 80 Pointer to info about 16-bit stack */
77 WORD thunk_ss; /* --n 84 Yet another 16-bit stack selector */
78 WORD pad3; /* --n 86 */
79 DWORD pad4[15]; /* --n 88 */
80 ULONG CurrentLocale; /* -2- C4 */
81 DWORD pad5[48]; /* --n C8 */
82 DWORD delta_priority; /* 1-n 188 Priority delta */
83 DWORD unknown4[7]; /* d-n 18c Unknown */
84 void *create_data; /* d-n 1a8 Pointer to creation structure */
85 DWORD suspend_count; /* d-n 1ac SuspendThread() counter */
86 void *entry_point; /* --3 1b0 Thread entry point (was: unknown) */
87 void *entry_arg; /* --3 1b4 Entry point arg (was: unknown) */
88 DWORD unknown5[4]; /* --n 1b8 Unknown */
89 DWORD sys_count[4]; /* --3 1c8 Syslevel mutex entry counters */
90 struct tagSYSLEVEL *sys_mutex[4]; /* --3 1d8 Syslevel mutex pointers */
91 DWORD unknown6[5]; /* --n 1e8 Unknown */
93 /* The following are Wine-specific fields (NT: GDI stuff) */
94 DWORD cleanup; /* --3 1fc Cleanup service handle */
95 int socket; /* --3 200 Socket for server communication */
96 void *buffer; /* --3 204 Buffer shared with server */
97 int request_fd; /* --3 208 fd for sending server requests */
98 int reply_fd; /* --3 20c fd for receiving server replies */
99 int wait_fd; /* --3 210 fd for sleeping server requests */
100 struct server_buffer_info *buffer_info; /* --3 214 Buffer information */
101 void *debug_info; /* --3 218 Info for debugstr functions */
102 void *pthread_data; /* --3 21c Data for pthread emulation */
103 /* here is plenty space for wine specific fields (don't forget to change pad6!!) */
105 /* the following are nt specific fields */
106 DWORD pad6[630]; /* --n 220 */
107 UNICODE_STRING StaticUnicodeString; /* -2- bf8 used by advapi32 */
108 USHORT StaticUnicodeBuffer[261]; /* -2- c00 used by advapi32 */
109 DWORD pad7; /* --n e0c */
110 LPVOID tls_array[64]; /* -2- e10 Thread local storage */
111 DWORD pad8[3]; /* --n f10 */
112 PVOID ReservedForNtRpc; /* -2- f1c used by rpcrt4 */
113 DWORD pad9[24]; /* --n f20 */
114 PVOID ErrorInfo; /* -2- f80 used by ole32 (IErrorInfo*) */
115 } TEB;
117 /* Thread exception flags */
118 #define TEBF_WIN32 0x0001
119 #define TEBF_TRAP 0x0002
121 /* The per-thread signal stack size */
122 #define SIGNAL_STACK_SIZE 16384
125 /* scheduler/thread.c */
126 extern void THREAD_Init(void);
127 extern TEB *THREAD_Create( int fd, DWORD stack_size, BOOL alloc_stack16 );
128 extern TEB *THREAD_InitStack( TEB *teb, DWORD stack_size, BOOL alloc_stack16 );
129 extern BOOL THREAD_IsWin16( TEB *thdb );
130 extern TEB *THREAD_IdToTEB( DWORD id );
132 /* scheduler/sysdeps.c */
133 extern int SYSDEPS_SpawnThread( TEB *teb );
134 extern void SYSDEPS_SetCurThread( TEB *teb );
135 extern void SYSDEPS_ExitThread( int status ) WINE_NORETURN;
137 #endif /* __WINE_THREAD_H */