Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * System-dependent scheduler support |
| 3 | * |
| 4 | * Copyright 1998 Alexandre Julliard |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
François Gouget | 1425941 | 2001-11-06 20:57:11 +0000 | [diff] [blame] | 21 | #include "config.h" |
Francois Gouget | 386cf6e | 2001-10-14 16:25:47 +0000 | [diff] [blame] | 22 | #include "wine/port.h" |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 23 | |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 24 | #include <signal.h> |
| 25 | #include <stdio.h> |
| 26 | #include <unistd.h> |
Ulrich Weigand | 06bf017 | 2000-06-08 00:39:59 +0000 | [diff] [blame] | 27 | #include <sys/time.h> |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 28 | #ifdef HAVE_SYS_SYSCALL_H |
| 29 | # include <sys/syscall.h> |
| 30 | #endif |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 31 | #ifdef HAVE_SYS_LWP_H |
| 32 | # include <sys/lwp.h> |
| 33 | #endif |
| 34 | #ifdef HAVE_UCONTEXT_H |
| 35 | # include <ucontext.h> |
| 36 | #endif |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 37 | #ifdef HAVE_SYS_MMAN_H |
| 38 | #include <sys/mman.h> |
| 39 | #endif |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 40 | #include "thread.h" |
Alexandre Julliard | 37e9503 | 2001-07-19 00:39:09 +0000 | [diff] [blame] | 41 | #include "wine/server.h" |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 42 | #include "winbase.h" |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 43 | #include "wine/winbase16.h" |
Alexandre Julliard | 3d06d20 | 1999-09-27 10:58:45 +0000 | [diff] [blame] | 44 | #include "wine/exception.h" |
Alexandre Julliard | 5900867 | 2002-05-16 20:32:16 +0000 | [diff] [blame] | 45 | #include "wine/library.h" |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 46 | #include "wine/debug.h" |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 47 | |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 48 | WINE_DEFAULT_DEBUG_CHANNEL(thread); |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 49 | |
Bang Jun-Young | 289a252 | 2001-06-15 19:43:51 +0000 | [diff] [blame] | 50 | #if defined(linux) || defined(HAVE_CLONE) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 51 | # ifdef HAVE_SCHED_H |
| 52 | # include <sched.h> |
| 53 | # endif |
| 54 | # ifndef CLONE_VM |
| 55 | # define CLONE_VM 0x00000100 |
| 56 | # define CLONE_FS 0x00000200 |
| 57 | # define CLONE_FILES 0x00000400 |
| 58 | # define CLONE_SIGHAND 0x00000800 |
| 59 | # define CLONE_PID 0x00001000 |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 60 | # endif /* CLONE_VM */ |
Bang Jun-Young | 289a252 | 2001-06-15 19:43:51 +0000 | [diff] [blame] | 61 | #endif /* linux || HAVE_CLONE */ |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 62 | |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 63 | extern void SELECTOR_FreeFs(void); |
| 64 | |
| 65 | struct thread_cleanup_info |
| 66 | { |
| 67 | void *stack_base; |
| 68 | int stack_size; |
| 69 | int status; |
| 70 | }; |
| 71 | |
| 72 | /* temporary stacks used on thread exit */ |
| 73 | #define TEMP_STACK_SIZE 1024 |
| 74 | #define NB_TEMP_STACKS 8 |
| 75 | static char temp_stacks[NB_TEMP_STACKS][TEMP_STACK_SIZE]; |
| 76 | static LONG next_temp_stack; /* next temp stack to use */ |
| 77 | |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 78 | /*********************************************************************** |
Alexandre Julliard | 54a39e2 | 1999-05-29 14:27:26 +0000 | [diff] [blame] | 79 | * SYSDEPS_SetCurThread |
| 80 | * |
| 81 | * Make 'thread' the current thread. |
| 82 | */ |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 83 | void SYSDEPS_SetCurThread( TEB *teb ) |
Alexandre Julliard | 54a39e2 | 1999-05-29 14:27:26 +0000 | [diff] [blame] | 84 | { |
Ulrich Weigand | cebd60b | 1999-09-03 16:45:44 +0000 | [diff] [blame] | 85 | #if defined(__i386__) |
Alexandre Julliard | 54a39e2 | 1999-05-29 14:27:26 +0000 | [diff] [blame] | 86 | /* On the i386, the current thread is in the %fs register */ |
Alexandre Julliard | 5900867 | 2002-05-16 20:32:16 +0000 | [diff] [blame] | 87 | wine_set_fs( teb->teb_sel ); |
Ulrich Weigand | cebd60b | 1999-09-03 16:45:44 +0000 | [diff] [blame] | 88 | #elif defined(HAVE__LWP_CREATE) |
| 89 | /* On non-i386 Solaris, we use the LWP private pointer */ |
| 90 | _lwp_setprivate( teb ); |
| 91 | #endif |
Alexandre Julliard | 54a39e2 | 1999-05-29 14:27:26 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 94 | |
| 95 | /*********************************************************************** |
| 96 | * call_on_thread_stack |
| 97 | * |
| 98 | * Call a function once we switched to the thread stack. |
| 99 | */ |
| 100 | static void call_on_thread_stack( void *func ) |
| 101 | { |
| 102 | __TRY |
| 103 | { |
| 104 | void (*funcptr)(void) = func; |
| 105 | funcptr(); |
| 106 | } |
| 107 | __EXCEPT(UnhandledExceptionFilter) |
| 108 | { |
| 109 | TerminateThread( GetCurrentThread(), GetExceptionCode() ); |
| 110 | } |
| 111 | __ENDTRY |
| 112 | SYSDEPS_ExitThread(0); /* should never get here */ |
| 113 | } |
| 114 | |
| 115 | |
| 116 | /*********************************************************************** |
| 117 | * get_temp_stack |
| 118 | * |
| 119 | * Get a temporary stack address to run the thread exit code on. |
| 120 | */ |
| 121 | inline static char *get_temp_stack(void) |
| 122 | { |
| 123 | unsigned int next = InterlockedExchangeAdd( &next_temp_stack, 1 ); |
| 124 | return temp_stacks[next % NB_TEMP_STACKS]; |
| 125 | } |
| 126 | |
| 127 | |
| 128 | /*********************************************************************** |
| 129 | * cleanup_thread |
| 130 | * |
| 131 | * Cleanup the remains of a thread. Runs on a temporary stack. |
| 132 | */ |
| 133 | static void cleanup_thread( void *ptr ) |
| 134 | { |
| 135 | /* copy the info structure since it is on the stack we will free */ |
| 136 | struct thread_cleanup_info info = *(struct thread_cleanup_info *)ptr; |
| 137 | munmap( info.stack_base, info.stack_size ); |
| 138 | SELECTOR_FreeFs(); |
| 139 | #ifdef HAVE__LWP_CREATE |
| 140 | _lwp_exit(); |
| 141 | #endif |
| 142 | _exit( info.status ); |
| 143 | } |
| 144 | |
| 145 | |
Alexandre Julliard | 54a39e2 | 1999-05-29 14:27:26 +0000 | [diff] [blame] | 146 | /*********************************************************************** |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 147 | * SYSDEPS_StartThread |
| 148 | * |
| 149 | * Startup routine for a new thread. |
| 150 | */ |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 151 | static void SYSDEPS_StartThread( TEB *teb ) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 152 | { |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 153 | SYSDEPS_SetCurThread( teb ); |
Alexandre Julliard | 875c4b3 | 1999-03-23 14:09:41 +0000 | [diff] [blame] | 154 | CLIENT_InitThread(); |
Alexandre Julliard | 3d06d20 | 1999-09-27 10:58:45 +0000 | [diff] [blame] | 155 | SIGNAL_Init(); |
| 156 | __TRY |
| 157 | { |
| 158 | teb->startup(); |
| 159 | } |
| 160 | __EXCEPT(UnhandledExceptionFilter) |
| 161 | { |
| 162 | TerminateThread( GetCurrentThread(), GetExceptionCode() ); |
| 163 | } |
| 164 | __ENDTRY |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 165 | SYSDEPS_ExitThread(0); /* should never get here */ |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 166 | } |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 167 | |
| 168 | |
| 169 | /*********************************************************************** |
| 170 | * SYSDEPS_SpawnThread |
| 171 | * |
| 172 | * Start running a new thread. |
| 173 | * Return -1 on error, 0 if OK. |
| 174 | */ |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 175 | int SYSDEPS_SpawnThread( TEB *teb ) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 176 | { |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 177 | #ifdef ERRNO_LOCATION |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 178 | |
Bang Jun-Young | 289a252 | 2001-06-15 19:43:51 +0000 | [diff] [blame] | 179 | #if defined(linux) || defined(HAVE_CLONE) |
Alexandre Julliard | 3174174 | 2000-03-28 18:47:24 +0000 | [diff] [blame] | 180 | const int flags = CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD; |
| 181 | if (clone( (int (*)(void *))SYSDEPS_StartThread, teb->stack_top, flags, teb ) < 0) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 182 | return -1; |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 183 | if (!(flags & CLONE_FILES)) close( teb->request_fd ); /* close the child socket in the parent */ |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 184 | return 0; |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 185 | #endif |
| 186 | |
| 187 | #ifdef HAVE_RFORK |
Alexandre Julliard | 3174174 | 2000-03-28 18:47:24 +0000 | [diff] [blame] | 188 | const int flags = RFPROC | RFMEM; /*|RFFDG*/ |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 189 | void **sp = (void **)teb->stack_top; |
| 190 | *--sp = teb; |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 191 | *--sp = 0; |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 192 | *--sp = SYSDEPS_StartThread; |
| 193 | __asm__ __volatile__( |
Alexandre Julliard | 3174174 | 2000-03-28 18:47:24 +0000 | [diff] [blame] | 194 | "pushl %2;\n\t" /* flags */ |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 195 | "pushl $0;\n\t" /* 0 ? */ |
| 196 | "movl %1,%%eax;\n\t" /* SYS_rfork */ |
| 197 | ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */ |
| 198 | "cmpl $0, %%edx;\n\t" |
| 199 | "je 1f;\n\t" |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 200 | "movl %0,%%esp;\n\t" /* child -> new thread */ |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 201 | "ret;\n" |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 202 | "1:\n\t" /* parent -> caller thread */ |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 203 | "addl $8,%%esp" : |
Alexandre Julliard | 3174174 | 2000-03-28 18:47:24 +0000 | [diff] [blame] | 204 | : "r" (sp), "g" (SYS_rfork), "g" (flags) |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 205 | : "eax", "edx"); |
Alexandre Julliard | 8859d77 | 2001-03-01 22:13:49 +0000 | [diff] [blame] | 206 | if (flags & RFFDG) close( teb->request_fd ); /* close the child socket in the parent */ |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 207 | return 0; |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 208 | #endif |
| 209 | |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 210 | #ifdef HAVE__LWP_CREATE |
| 211 | ucontext_t context; |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 212 | _lwp_makecontext( &context, (void(*)(void *))SYSDEPS_StartThread, teb, |
| 213 | NULL, teb->stack_base, (char *)teb->stack_top - (char *)teb->stack_base ); |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 214 | if ( _lwp_create( &context, 0, NULL ) ) |
| 215 | return -1; |
| 216 | return 0; |
| 217 | #endif |
| 218 | |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 219 | #endif /* ERRNO_LOCATION */ |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 220 | |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 221 | FIXME("CreateThread: stub\n" ); |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 222 | return 0; |
| 223 | } |
| 224 | |
| 225 | |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 226 | /*********************************************************************** |
| 227 | * SYSDEPS_CallOnStack |
| 228 | */ |
| 229 | void SYSDEPS_CallOnStack( void (*func)(LPVOID), LPVOID arg ) WINE_NORETURN; |
| 230 | #ifdef __i386__ |
Patrik Stridvall | 3751ff0 | 2002-05-04 18:37:08 +0000 | [diff] [blame] | 231 | #ifdef __GNUC__ |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 232 | __ASM_GLOBAL_FUNC( SYSDEPS_CallOnStack, |
| 233 | "movl 4(%esp),%ecx\n\t" /* func */ |
| 234 | "movl 8(%esp),%edx\n\t" /* arg */ |
| 235 | ".byte 0x64\n\tmovl 0x04,%esp\n\t" /* teb->stack_top */ |
| 236 | "pushl %edx\n\t" |
| 237 | "xorl %ebp,%ebp\n\t" |
| 238 | "call *%ecx\n\t" |
| 239 | "int $3" /* we never return here */ ); |
Patrik Stridvall | 3751ff0 | 2002-05-04 18:37:08 +0000 | [diff] [blame] | 240 | #elif defined(_MSC_VER) |
| 241 | __declspec(naked) void SYSDEPS_CallOnStack( void (*func)(LPVOID), LPVOID arg ) |
| 242 | { |
| 243 | __asm mov ecx, 4[esp]; |
| 244 | __asm mov edx, 8[esp]; |
| 245 | __asm mov fs:[0x04], esp; |
| 246 | __asm push edx; |
| 247 | __asm xor ebp, ebp; |
| 248 | __asm call [ecx]; |
| 249 | __asm int 3; |
| 250 | } |
| 251 | #endif /* defined(__GNUC__) || defined(_MSC_VER) */ |
| 252 | #else /* defined(__i386__) */ |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 253 | void SYSDEPS_CallOnStack( void (*func)(LPVOID), LPVOID arg ) |
| 254 | { |
| 255 | func( arg ); |
| 256 | while(1); /* avoid warning */ |
| 257 | } |
Patrik Stridvall | 3751ff0 | 2002-05-04 18:37:08 +0000 | [diff] [blame] | 258 | #endif /* defined(__i386__) */ |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 259 | |
| 260 | |
| 261 | /*********************************************************************** |
| 262 | * SYSDEPS_SwitchToThreadStack |
| 263 | */ |
| 264 | void SYSDEPS_SwitchToThreadStack( void (*func)(void) ) |
| 265 | { |
| 266 | SYSDEPS_CallOnStack( call_on_thread_stack, func ); |
| 267 | } |
| 268 | |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 269 | |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 270 | /*********************************************************************** |
| 271 | * SYSDEPS_ExitThread |
| 272 | * |
| 273 | * Exit a running thread; must not return. |
| 274 | */ |
Alexandre Julliard | 12f29b5 | 2000-03-17 15:16:57 +0000 | [diff] [blame] | 275 | void SYSDEPS_ExitThread( int status ) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 276 | { |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 277 | TEB *teb = NtCurrentTeb(); |
| 278 | struct thread_cleanup_info info; |
| 279 | MEMORY_BASIC_INFORMATION meminfo; |
| 280 | |
| 281 | FreeSelector16( teb->stack_sel ); |
| 282 | VirtualQuery( teb->stack_top, &meminfo, sizeof(meminfo) ); |
| 283 | info.stack_base = meminfo.AllocationBase; |
| 284 | info.stack_size = meminfo.RegionSize + ((char *)teb->stack_top - (char *)meminfo.AllocationBase); |
| 285 | info.status = status; |
| 286 | |
| 287 | SIGNAL_Reset(); |
| 288 | |
| 289 | VirtualFree( teb->stack_base, 0, MEM_RELEASE | MEM_SYSTEM ); |
| 290 | close( teb->wait_fd[0] ); |
| 291 | close( teb->wait_fd[1] ); |
| 292 | close( teb->reply_fd ); |
| 293 | close( teb->request_fd ); |
| 294 | teb->stack_low = get_temp_stack(); |
Patrik Stridvall | 3751ff0 | 2002-05-04 18:37:08 +0000 | [diff] [blame] | 295 | teb->stack_top = (char *) teb->stack_low + TEMP_STACK_SIZE; |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 296 | SYSDEPS_CallOnStack( cleanup_thread, &info ); |
| 297 | } |
| 298 | |
| 299 | |
| 300 | /*********************************************************************** |
| 301 | * SYSDEPS_AbortThread |
| 302 | * |
| 303 | * Same as SYSDEPS_ExitThread, but must not do anything that requires a server call. |
| 304 | */ |
| 305 | void SYSDEPS_AbortThread( int status ) |
| 306 | { |
| 307 | SIGNAL_Reset(); |
| 308 | close( NtCurrentTeb()->wait_fd[0] ); |
| 309 | close( NtCurrentTeb()->wait_fd[1] ); |
| 310 | close( NtCurrentTeb()->reply_fd ); |
| 311 | close( NtCurrentTeb()->request_fd ); |
Alexandre Julliard | 9a0e28f | 2000-03-25 19:14:37 +0000 | [diff] [blame] | 312 | #ifdef HAVE__LWP_CREATE |
Ulrich Weigand | a44f9f8 | 1999-04-18 13:20:43 +0000 | [diff] [blame] | 313 | _lwp_exit(); |
| 314 | #endif |
Alexandre Julliard | 5016e92 | 2002-01-07 18:04:07 +0000 | [diff] [blame] | 315 | for (;;) /* avoid warning */ |
| 316 | _exit( status ); |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | |
| 320 | /********************************************************************** |
Patrik Stridvall | d0a4177 | 2001-02-14 23:11:17 +0000 | [diff] [blame] | 321 | * NtCurrentTeb (NTDLL.@) |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 322 | * |
| 323 | * This will crash and burn if called before threading is initialized |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 324 | */ |
Patrik Stridvall | 441a7dc | 2002-04-29 18:37:36 +0000 | [diff] [blame] | 325 | #if defined(__i386__) && defined(__GNUC__) |
Alexandre Julliard | 916f975 | 2000-02-26 16:51:13 +0000 | [diff] [blame] | 326 | __ASM_GLOBAL_FUNC( NtCurrentTeb, ".byte 0x64\n\tmovl 0x18,%eax\n\tret" ); |
Patrik Stridvall | 441a7dc | 2002-04-29 18:37:36 +0000 | [diff] [blame] | 327 | #elif defined(__i386__) && defined(_MSC_VER) |
Patrik Stridvall | 3751ff0 | 2002-05-04 18:37:08 +0000 | [diff] [blame] | 328 | /* Nothing needs to be done. MS C "magically" exports the inline version from winnt.h */ |
Alexandre Julliard | 916f975 | 2000-02-26 16:51:13 +0000 | [diff] [blame] | 329 | #elif defined(HAVE__LWP_CREATE) |
Patrik Stridvall | db92305 | 2001-07-24 00:58:52 +0000 | [diff] [blame] | 330 | /*********************************************************************** |
| 331 | * NtCurrentTeb (NTDLL.@) |
| 332 | */ |
Alexandre Julliard | 0a860a0 | 1999-06-22 11:43:42 +0000 | [diff] [blame] | 333 | struct _TEB * WINAPI NtCurrentTeb(void) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 334 | { |
Alexandre Julliard | 916f975 | 2000-02-26 16:51:13 +0000 | [diff] [blame] | 335 | extern void *_lwp_getprivate(void); |
| 336 | return (struct _TEB *)_lwp_getprivate(); |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 337 | } |
Alexandre Julliard | 916f975 | 2000-02-26 16:51:13 +0000 | [diff] [blame] | 338 | #else |
| 339 | # error NtCurrentTeb not defined for this architecture |
| 340 | #endif /* __i386__ */ |