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