4 * Copyright 1996, 2003 Alexandre Julliard
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 #include <sys/types.h>
27 #ifdef HAVE_SYS_MMAN_H
30 #ifdef HAVE_SYS_TIMES_H
31 #include <sys/times.h>
34 #define NONAMELESSUNION
36 #define WIN32_NO_STATUS
38 #include "wine/library.h"
39 #include "wine/server.h"
40 #include "wine/pthread.h"
41 #include "wine/debug.h"
42 #include "ntdll_misc.h"
44 #include "wine/exception.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(thread
);
47 WINE_DECLARE_DEBUG_CHANNEL(relay
);
49 struct _KUSER_SHARED_DATA
*user_shared_data
= NULL
;
51 PUNHANDLED_EXCEPTION_FILTER unhandled_exception_filter
= NULL
;
53 /* info passed to a starting thread */
56 struct wine_pthread_thread_info pthread_info
;
57 PRTL_THREAD_START_ROUTINE entry_point
;
61 static PEB_LDR_DATA ldr
;
62 static RTL_USER_PROCESS_PARAMETERS params
; /* default parameters if no parent */
63 static WCHAR current_dir
[MAX_NT_PATH_LENGTH
];
64 static RTL_BITMAP tls_bitmap
;
65 static RTL_BITMAP tls_expansion_bitmap
;
66 static RTL_BITMAP fls_bitmap
;
67 static LIST_ENTRY tls_links
;
68 static size_t sigstack_total_size
;
69 static ULONG sigstack_zero_bits
;
71 struct wine_pthread_functions pthread_functions
= { NULL
};
74 static RTL_CRITICAL_SECTION ldt_section
;
75 static RTL_CRITICAL_SECTION_DEBUG critsect_debug
=
78 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
79 0, 0, { (DWORD_PTR
)(__FILE__
": ldt_section") }
81 static RTL_CRITICAL_SECTION ldt_section
= { &critsect_debug
, -1, 0, 0, 0, 0 };
82 static sigset_t ldt_sigset
;
84 /***********************************************************************
85 * locking for LDT routines
87 static void ldt_lock(void)
91 pthread_functions
.sigprocmask( SIG_BLOCK
, &server_block_set
, &sigset
);
92 RtlEnterCriticalSection( &ldt_section
);
93 if (ldt_section
.RecursionCount
== 1) ldt_sigset
= sigset
;
96 static void ldt_unlock(void)
98 if (ldt_section
.RecursionCount
== 1)
100 sigset_t sigset
= ldt_sigset
;
101 RtlLeaveCriticalSection( &ldt_section
);
102 pthread_functions
.sigprocmask( SIG_SETMASK
, &sigset
, NULL
);
104 else RtlLeaveCriticalSection( &ldt_section
);
108 /***********************************************************************
111 static inline NTSTATUS
init_teb( TEB
*teb
)
113 struct ntdll_thread_data
*thread_data
= (struct ntdll_thread_data
*)teb
->SystemReserved2
;
115 teb
->Tib
.ExceptionList
= (void *)~0UL;
116 teb
->Tib
.StackBase
= (void *)~0UL;
117 teb
->Tib
.Self
= &teb
->Tib
;
118 teb
->StaticUnicodeString
.Buffer
= teb
->StaticUnicodeBuffer
;
119 teb
->StaticUnicodeString
.MaximumLength
= sizeof(teb
->StaticUnicodeBuffer
);
121 if (!(thread_data
->fs
= wine_ldt_alloc_fs())) return STATUS_TOO_MANY_THREADS
;
122 thread_data
->request_fd
= -1;
123 thread_data
->reply_fd
= -1;
124 thread_data
->wait_fd
[0] = -1;
125 thread_data
->wait_fd
[1] = -1;
127 return STATUS_SUCCESS
;
131 /***********************************************************************
134 * Make sure the unicode string doesn't point beyond the end pointer
136 static inline void fix_unicode_string( UNICODE_STRING
*str
, const char *end_ptr
)
138 if ((char *)str
->Buffer
>= end_ptr
)
140 str
->Length
= str
->MaximumLength
= 0;
144 if ((char *)str
->Buffer
+ str
->MaximumLength
> end_ptr
)
146 str
->MaximumLength
= (end_ptr
- (char *)str
->Buffer
) & ~(sizeof(WCHAR
) - 1);
148 if (str
->Length
>= str
->MaximumLength
)
150 if (str
->MaximumLength
>= sizeof(WCHAR
))
151 str
->Length
= str
->MaximumLength
- sizeof(WCHAR
);
153 str
->Length
= str
->MaximumLength
= 0;
158 /***********************************************************************
159 * init_user_process_params
161 * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
163 static NTSTATUS
init_user_process_params( SIZE_T info_size
, HANDLE
*exe_file
)
168 RTL_USER_PROCESS_PARAMETERS
*params
= NULL
;
170 status
= NtAllocateVirtualMemory( NtCurrentProcess(), (void **)¶ms
, 0, &info_size
,
171 MEM_COMMIT
, PAGE_READWRITE
);
172 if (status
!= STATUS_SUCCESS
) return status
;
174 params
->AllocationSize
= info_size
;
175 NtCurrentTeb()->Peb
->ProcessParameters
= params
;
177 SERVER_START_REQ( get_startup_info
)
179 wine_server_set_reply( req
, params
, info_size
);
180 if (!(status
= wine_server_call( req
)))
182 info_size
= wine_server_reply_size( reply
);
183 *exe_file
= wine_server_ptr_handle( reply
->exe_file
);
184 params
->hStdInput
= wine_server_ptr_handle( reply
->hstdin
);
185 params
->hStdOutput
= wine_server_ptr_handle( reply
->hstdout
);
186 params
->hStdError
= wine_server_ptr_handle( reply
->hstderr
);
190 if (status
!= STATUS_SUCCESS
) return status
;
192 if (params
->Size
> info_size
) params
->Size
= info_size
;
194 /* make sure the strings are valid */
195 fix_unicode_string( ¶ms
->CurrentDirectory
.DosPath
, (char *)info_size
);
196 fix_unicode_string( ¶ms
->DllPath
, (char *)info_size
);
197 fix_unicode_string( ¶ms
->ImagePathName
, (char *)info_size
);
198 fix_unicode_string( ¶ms
->CommandLine
, (char *)info_size
);
199 fix_unicode_string( ¶ms
->WindowTitle
, (char *)info_size
);
200 fix_unicode_string( ¶ms
->Desktop
, (char *)info_size
);
201 fix_unicode_string( ¶ms
->ShellInfo
, (char *)info_size
);
202 fix_unicode_string( ¶ms
->RuntimeInfo
, (char *)info_size
);
204 /* environment needs to be a separate memory block */
205 env_size
= info_size
- params
->Size
;
206 if (!env_size
) env_size
= 1;
208 status
= NtAllocateVirtualMemory( NtCurrentProcess(), &ptr
, 0, &env_size
,
209 MEM_COMMIT
, PAGE_READWRITE
);
210 if (status
!= STATUS_SUCCESS
) return status
;
211 memcpy( ptr
, (char *)params
+ params
->Size
, info_size
- params
->Size
);
212 params
->Environment
= ptr
;
214 RtlNormalizeProcessParams( params
);
219 /***********************************************************************
222 * Setup the initial thread.
224 * NOTES: The first allocated TEB on NT is at 0x7ffde000.
226 HANDLE
thread_init(void)
231 SIZE_T size
, info_size
;
234 struct ntdll_thread_data
*thread_data
;
235 struct wine_pthread_thread_info thread_info
;
236 static struct debug_info debug_info
; /* debug info for initial thread */
240 /* reserve space for shared user data */
242 addr
= (void *)0x7ffe0000;
244 NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, 0, &size
, MEM_RESERVE
|MEM_COMMIT
, PAGE_READWRITE
);
245 user_shared_data
= addr
;
247 /* allocate and initialize the PEB */
251 NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, 1, &size
,
252 MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
);
255 peb
->NumberOfProcessors
= 1;
256 peb
->ProcessParameters
= ¶ms
;
257 peb
->TlsBitmap
= &tls_bitmap
;
258 peb
->TlsExpansionBitmap
= &tls_expansion_bitmap
;
259 peb
->FlsBitmap
= &fls_bitmap
;
261 params
.CurrentDirectory
.DosPath
.Buffer
= current_dir
;
262 params
.CurrentDirectory
.DosPath
.MaximumLength
= sizeof(current_dir
);
263 params
.wShowWindow
= 1; /* SW_SHOWNORMAL */
264 RtlInitializeBitMap( &tls_bitmap
, peb
->TlsBitmapBits
, sizeof(peb
->TlsBitmapBits
) * 8 );
265 RtlInitializeBitMap( &tls_expansion_bitmap
, peb
->TlsExpansionBitmapBits
,
266 sizeof(peb
->TlsExpansionBitmapBits
) * 8 );
267 RtlInitializeBitMap( &fls_bitmap
, peb
->FlsBitmapBits
, sizeof(peb
->FlsBitmapBits
) * 8 );
268 InitializeListHead( &peb
->FlsListHead
);
269 InitializeListHead( &ldr
.InLoadOrderModuleList
);
270 InitializeListHead( &ldr
.InMemoryOrderModuleList
);
271 InitializeListHead( &ldr
.InInitializationOrderModuleList
);
272 InitializeListHead( &tls_links
);
274 /* allocate and initialize the initial TEB */
276 sigstack_total_size
= get_signal_stack_total_size();
277 while (1U << sigstack_zero_bits
< sigstack_total_size
) sigstack_zero_bits
++;
278 assert( 1U << sigstack_zero_bits
== sigstack_total_size
); /* must be a power of 2 */
279 assert( sigstack_total_size
>= sizeof(TEB
) + sizeof(struct startup_info
) );
280 thread_info
.teb_size
= sigstack_total_size
;
283 size
= sigstack_total_size
;
284 NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, sigstack_zero_bits
,
285 &size
, MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
);
288 thread_info
.teb_size
= size
;
290 thread_data
= (struct ntdll_thread_data
*)teb
->SystemReserved2
;
291 thread_data
->debug_info
= &debug_info
;
292 InsertHeadList( &tls_links
, &teb
->TlsLinks
);
294 thread_info
.stack_base
= NULL
;
295 thread_info
.stack_size
= 0;
296 thread_info
.teb_base
= teb
;
297 thread_info
.teb_sel
= thread_data
->fs
;
298 wine_pthread_get_functions( &pthread_functions
, sizeof(pthread_functions
) );
299 pthread_functions
.init_current_teb( &thread_info
);
300 pthread_functions
.init_thread( &thread_info
);
301 virtual_init_threading();
303 debug_info
.str_pos
= debug_info
.strings
;
304 debug_info
.out_pos
= debug_info
.output
;
307 /* setup the server connection */
308 server_init_process();
309 info_size
= server_init_thread( thread_info
.pid
, thread_info
.tid
, NULL
);
311 /* create the process heap */
312 if (!(peb
->ProcessHeap
= RtlCreateHeap( HEAP_GROWABLE
, NULL
, 0, 0, NULL
, NULL
)))
314 MESSAGE( "wine: failed to create the process heap\n" );
318 /* allocate user parameters */
321 init_user_process_params( info_size
, &exe_file
);
325 /* This is wine specific: we have no parent (we're started from unix)
326 * so, create a simple console with bare handles to unix stdio
328 wine_server_fd_to_handle( 0, GENERIC_READ
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdInput
);
329 wine_server_fd_to_handle( 1, GENERIC_WRITE
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdOutput
);
330 wine_server_fd_to_handle( 2, GENERIC_WRITE
|SYNCHRONIZE
, OBJ_INHERIT
, ¶ms
.hStdError
);
333 /* initialize LDT locking */
334 wine_ldt_init_locking( ldt_lock
, ldt_unlock
);
336 /* initialize time values in user_shared_data */
337 NtQuerySystemTime( &now
);
338 user_shared_data
->SystemTime
.LowPart
= now
.u
.LowPart
;
339 user_shared_data
->SystemTime
.High1Time
= user_shared_data
->SystemTime
.High2Time
= now
.u
.HighPart
;
340 user_shared_data
->u
.TickCountQuad
= (now
.QuadPart
- server_start_time
) / 10000;
341 user_shared_data
->u
.TickCount
.High2Time
= user_shared_data
->u
.TickCount
.High1Time
;
342 user_shared_data
->TickCountLowDeprecated
= user_shared_data
->u
.TickCount
.LowPart
;
343 user_shared_data
->TickCountMultiplier
= 1 << 24;
350 /* wrapper for apps that don't declare the thread function correctly */
351 extern DWORD
call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry
, void *arg
);
352 __ASM_GLOBAL_FUNC(call_thread_entry_point
,
357 "movl 8(%ebp),%eax\n\t"
362 static inline DWORD
call_thread_entry_point( PRTL_THREAD_START_ROUTINE entry
, void *arg
)
364 LPTHREAD_START_ROUTINE func
= (LPTHREAD_START_ROUTINE
)entry
;
369 /***********************************************************************
372 * Hack to make things compatible with the thread procedures used by kernel32.CreateThread.
374 static void DECLSPEC_NORETURN
call_thread_func( PRTL_THREAD_START_ROUTINE rtl_func
, void *arg
)
379 MODULE_DllThreadAttach( NULL
);
382 DPRINTF( "%04x:Starting thread proc %p (arg=%p)\n", GetCurrentThreadId(), rtl_func
, arg
);
384 exit_code
= call_thread_entry_point( rtl_func
, arg
);
386 /* send the exit code to the server */
387 SERVER_START_REQ( terminate_thread
)
389 req
->handle
= wine_server_obj_handle( GetCurrentThread() );
390 req
->exit_code
= exit_code
;
391 wine_server_call( req
);
398 LdrShutdownProcess();
404 server_exit_thread( exit_code
);
409 /***********************************************************************
412 * Startup routine for a newly created thread.
414 static void start_thread( struct wine_pthread_thread_info
*info
)
416 TEB
*teb
= info
->teb_base
;
417 struct ntdll_thread_data
*thread_data
= (struct ntdll_thread_data
*)teb
->SystemReserved2
;
418 struct startup_info
*startup_info
= (struct startup_info
*)info
;
419 PRTL_THREAD_START_ROUTINE func
= startup_info
->entry_point
;
420 void *arg
= startup_info
->entry_arg
;
421 struct debug_info debug_info
;
423 debug_info
.str_pos
= debug_info
.strings
;
424 debug_info
.out_pos
= debug_info
.output
;
425 thread_data
->debug_info
= &debug_info
;
427 pthread_functions
.init_current_teb( info
);
428 signal_init_thread();
429 server_init_thread( info
->pid
, info
->tid
, func
);
430 pthread_functions
.init_thread( info
);
431 virtual_alloc_thread_stack( info
->stack_base
, info
->stack_size
);
432 pthread_functions
.sigprocmask( SIG_UNBLOCK
, &server_block_set
, NULL
);
435 InsertHeadList( &tls_links
, &teb
->TlsLinks
);
438 /* NOTE: Windows does not have an exception handler around the call to
439 * the thread attach. We do for ease of debugging */
440 if (unhandled_exception_filter
)
444 call_thread_func( func
, arg
);
446 __EXCEPT(unhandled_exception_filter
)
448 NtTerminateThread( GetCurrentThread(), GetExceptionCode() );
453 call_thread_func( func
, arg
);
457 /***********************************************************************
458 * RtlCreateUserThread (NTDLL.@)
460 NTSTATUS WINAPI
RtlCreateUserThread( HANDLE process
, const SECURITY_DESCRIPTOR
*descr
,
461 BOOLEAN suspended
, PVOID stack_addr
,
462 SIZE_T stack_reserve
, SIZE_T stack_commit
,
463 PRTL_THREAD_START_ROUTINE start
, void *param
,
464 HANDLE
*handle_ptr
, CLIENT_ID
*id
)
467 struct ntdll_thread_data
*thread_data
= NULL
;
468 struct ntdll_thread_regs
*thread_regs
;
469 struct startup_info
*info
= NULL
;
476 SIZE_T size
, page_size
= getpagesize();
478 if (process
!= NtCurrentProcess())
483 memset( &call
, 0, sizeof(call
) );
485 call
.create_thread
.type
= APC_CREATE_THREAD
;
486 call
.create_thread
.func
= wine_server_client_ptr( start
);
487 call
.create_thread
.arg
= wine_server_client_ptr( param
);
488 call
.create_thread
.reserve
= stack_reserve
;
489 call
.create_thread
.commit
= stack_commit
;
490 call
.create_thread
.suspend
= suspended
;
491 status
= NTDLL_queue_process_apc( process
, &call
, &result
);
492 if (status
!= STATUS_SUCCESS
) return status
;
494 if (result
.create_thread
.status
== STATUS_SUCCESS
)
496 if (id
) id
->UniqueThread
= ULongToHandle(result
.create_thread
.tid
);
497 if (handle_ptr
) *handle_ptr
= wine_server_ptr_handle( result
.create_thread
.handle
);
498 else NtClose( wine_server_ptr_handle( result
.create_thread
.handle
));
500 return result
.create_thread
.status
;
503 if (pipe( request_pipe
) == -1) return STATUS_TOO_MANY_OPENED_FILES
;
504 fcntl( request_pipe
[1], F_SETFD
, 1 ); /* set close on exec flag */
505 wine_server_send_fd( request_pipe
[0] );
507 SERVER_START_REQ( new_thread
)
509 req
->access
= THREAD_ALL_ACCESS
;
510 req
->attributes
= 0; /* FIXME */
511 req
->suspend
= suspended
;
512 req
->request_fd
= request_pipe
[0];
513 if (!(status
= wine_server_call( req
)))
515 handle
= wine_server_ptr_handle( reply
->handle
);
518 close( request_pipe
[0] );
524 close( request_pipe
[1] );
528 pthread_functions
.sigprocmask( SIG_BLOCK
, &server_block_set
, &sigset
);
531 size
= sigstack_total_size
;
532 if ((status
= NtAllocateVirtualMemory( NtCurrentProcess(), &addr
, sigstack_zero_bits
,
533 &size
, MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
)))
536 teb
->Peb
= NtCurrentTeb()->Peb
;
537 info
= (struct startup_info
*)(teb
+ 1);
538 info
->pthread_info
.teb_size
= size
;
539 if ((status
= init_teb( teb
))) goto error
;
541 teb
->ClientId
.UniqueProcess
= ULongToHandle(GetCurrentProcessId());
542 teb
->ClientId
.UniqueThread
= ULongToHandle(tid
);
544 thread_data
= (struct ntdll_thread_data
*)teb
->SystemReserved2
;
545 thread_regs
= (struct ntdll_thread_regs
*)teb
->SpareBytes1
;
546 thread_data
->request_fd
= request_pipe
[1];
548 info
->pthread_info
.teb_base
= teb
;
549 info
->pthread_info
.teb_sel
= thread_data
->fs
;
551 /* inherit debug registers from parent thread */
552 thread_regs
->dr0
= ntdll_get_thread_regs()->dr0
;
553 thread_regs
->dr1
= ntdll_get_thread_regs()->dr1
;
554 thread_regs
->dr2
= ntdll_get_thread_regs()->dr2
;
555 thread_regs
->dr3
= ntdll_get_thread_regs()->dr3
;
556 thread_regs
->dr6
= ntdll_get_thread_regs()->dr6
;
557 thread_regs
->dr7
= ntdll_get_thread_regs()->dr7
;
559 if (!stack_reserve
|| !stack_commit
)
561 IMAGE_NT_HEADERS
*nt
= RtlImageNtHeader( NtCurrentTeb()->Peb
->ImageBaseAddress
);
562 if (!stack_reserve
) stack_reserve
= nt
->OptionalHeader
.SizeOfStackReserve
;
563 if (!stack_commit
) stack_commit
= nt
->OptionalHeader
.SizeOfStackCommit
;
565 if (stack_reserve
< stack_commit
) stack_reserve
= stack_commit
;
566 stack_reserve
+= page_size
; /* for the guard page */
567 stack_reserve
= (stack_reserve
+ 0xffff) & ~0xffff; /* round to 64K boundary */
568 if (stack_reserve
< 1024 * 1024) stack_reserve
= 1024 * 1024; /* Xlib needs a large stack */
570 info
->pthread_info
.stack_base
= NULL
;
571 info
->pthread_info
.stack_size
= stack_reserve
;
572 info
->pthread_info
.entry
= start_thread
;
573 info
->entry_point
= start
;
574 info
->entry_arg
= param
;
576 if (pthread_functions
.create_thread( &info
->pthread_info
) == -1)
578 status
= STATUS_NO_MEMORY
;
581 pthread_functions
.sigprocmask( SIG_SETMASK
, &sigset
, NULL
);
583 if (id
) id
->UniqueThread
= ULongToHandle(tid
);
584 if (handle_ptr
) *handle_ptr
= handle
;
585 else NtClose( handle
);
587 return STATUS_SUCCESS
;
590 if (thread_data
) wine_ldt_free_fs( thread_data
->fs
);
594 NtFreeVirtualMemory( NtCurrentProcess(), &addr
, &size
, MEM_RELEASE
);
596 if (handle
) NtClose( handle
);
597 pthread_functions
.sigprocmask( SIG_SETMASK
, &sigset
, NULL
);
598 close( request_pipe
[1] );
603 /***********************************************************************
604 * RtlExitUserThread (NTDLL.@)
606 void WINAPI
RtlExitUserThread( ULONG status
)
610 SERVER_START_REQ( terminate_thread
)
612 /* send the exit code to the server */
613 req
->handle
= wine_server_obj_handle( GetCurrentThread() );
614 req
->exit_code
= status
;
615 wine_server_call( req
);
622 LdrShutdownProcess();
628 server_exit_thread( status
);
633 /***********************************************************************
634 * NtOpenThread (NTDLL.@)
635 * ZwOpenThread (NTDLL.@)
637 NTSTATUS WINAPI
NtOpenThread( HANDLE
*handle
, ACCESS_MASK access
,
638 const OBJECT_ATTRIBUTES
*attr
, const CLIENT_ID
*id
)
642 SERVER_START_REQ( open_thread
)
644 req
->tid
= HandleToULong(id
->UniqueThread
);
645 req
->access
= access
;
646 req
->attributes
= attr
? attr
->Attributes
: 0;
647 ret
= wine_server_call( req
);
648 *handle
= wine_server_ptr_handle( reply
->handle
);
655 /******************************************************************************
656 * NtSuspendThread (NTDLL.@)
657 * ZwSuspendThread (NTDLL.@)
659 NTSTATUS WINAPI
NtSuspendThread( HANDLE handle
, PULONG count
)
663 SERVER_START_REQ( suspend_thread
)
665 req
->handle
= wine_server_obj_handle( handle
);
666 if (!(ret
= wine_server_call( req
))) *count
= reply
->count
;
673 /******************************************************************************
674 * NtResumeThread (NTDLL.@)
675 * ZwResumeThread (NTDLL.@)
677 NTSTATUS WINAPI
NtResumeThread( HANDLE handle
, PULONG count
)
681 SERVER_START_REQ( resume_thread
)
683 req
->handle
= wine_server_obj_handle( handle
);
684 if (!(ret
= wine_server_call( req
))) *count
= reply
->count
;
691 /******************************************************************************
692 * NtAlertResumeThread (NTDLL.@)
693 * ZwAlertResumeThread (NTDLL.@)
695 NTSTATUS WINAPI
NtAlertResumeThread( HANDLE handle
, PULONG count
)
697 FIXME( "stub: should alert thread %p\n", handle
);
698 return NtResumeThread( handle
, count
);
702 /******************************************************************************
703 * NtAlertThread (NTDLL.@)
704 * ZwAlertThread (NTDLL.@)
706 NTSTATUS WINAPI
NtAlertThread( HANDLE handle
)
708 FIXME( "stub: %p\n", handle
);
709 return STATUS_NOT_IMPLEMENTED
;
713 /******************************************************************************
714 * NtTerminateThread (NTDLL.@)
715 * ZwTerminateThread (NTDLL.@)
717 NTSTATUS WINAPI
NtTerminateThread( HANDLE handle
, LONG exit_code
)
722 SERVER_START_REQ( terminate_thread
)
724 req
->handle
= wine_server_obj_handle( handle
);
725 req
->exit_code
= exit_code
;
726 ret
= wine_server_call( req
);
727 self
= !ret
&& reply
->self
;
734 if (last
) exit( exit_code
);
735 else server_abort_thread( exit_code
);
741 /******************************************************************************
742 * NtQueueApcThread (NTDLL.@)
744 NTSTATUS WINAPI
NtQueueApcThread( HANDLE handle
, PNTAPCFUNC func
, ULONG_PTR arg1
,
745 ULONG_PTR arg2
, ULONG_PTR arg3
)
748 SERVER_START_REQ( queue_apc
)
750 req
->handle
= wine_server_obj_handle( handle
);
753 req
->call
.type
= APC_USER
;
754 req
->call
.user
.func
= wine_server_client_ptr( func
);
755 req
->call
.user
.args
[0] = arg1
;
756 req
->call
.user
.args
[1] = arg2
;
757 req
->call
.user
.args
[2] = arg3
;
759 else req
->call
.type
= APC_NONE
; /* wake up only */
760 ret
= wine_server_call( req
);
767 /***********************************************************************
768 * NtSetContextThread (NTDLL.@)
769 * ZwSetContextThread (NTDLL.@)
771 NTSTATUS WINAPI
NtSetContextThread( HANDLE handle
, const CONTEXT
*context
)
778 /* on i386 debug registers always require a server call */
779 self
= (handle
== GetCurrentThread());
780 if (self
&& (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
)))
782 struct ntdll_thread_regs
* const regs
= ntdll_get_thread_regs();
783 self
= (regs
->dr0
== context
->Dr0
&& regs
->dr1
== context
->Dr1
&&
784 regs
->dr2
== context
->Dr2
&& regs
->dr3
== context
->Dr3
&&
785 regs
->dr6
== context
->Dr6
&& regs
->dr7
== context
->Dr7
);
791 SERVER_START_REQ( set_thread_context
)
793 req
->handle
= wine_server_obj_handle( handle
);
794 req
->flags
= context
->ContextFlags
;
796 wine_server_add_data( req
, context
, sizeof(*context
) );
797 ret
= wine_server_call( req
);
802 if (ret
== STATUS_PENDING
)
804 if (NtSuspendThread( handle
, &dummy
) == STATUS_SUCCESS
)
806 for (i
= 0; i
< 100; i
++)
808 SERVER_START_REQ( set_thread_context
)
810 req
->handle
= wine_server_obj_handle( handle
);
811 req
->flags
= context
->ContextFlags
;
813 wine_server_add_data( req
, context
, sizeof(*context
) );
814 ret
= wine_server_call( req
);
817 if (ret
== STATUS_PENDING
)
819 LARGE_INTEGER timeout
;
820 timeout
.QuadPart
= -10000;
821 NtDelayExecution( FALSE
, &timeout
);
825 NtResumeThread( handle
, &dummy
);
827 if (ret
== STATUS_PENDING
) ret
= STATUS_ACCESS_DENIED
;
833 if (self
) set_cpu_context( context
);
834 return STATUS_SUCCESS
;
838 /* copy a context structure according to the flags */
839 static inline void copy_context( CONTEXT
*to
, const CONTEXT
*from
, DWORD flags
)
842 flags
&= ~CONTEXT_i386
; /* get rid of CPU id */
843 if (flags
& CONTEXT_INTEGER
)
852 if (flags
& CONTEXT_CONTROL
)
857 to
->SegCs
= from
->SegCs
;
858 to
->SegSs
= from
->SegSs
;
859 to
->EFlags
= from
->EFlags
;
861 if (flags
& CONTEXT_SEGMENTS
)
863 to
->SegDs
= from
->SegDs
;
864 to
->SegEs
= from
->SegEs
;
865 to
->SegFs
= from
->SegFs
;
866 to
->SegGs
= from
->SegGs
;
868 if (flags
& CONTEXT_DEBUG_REGISTERS
)
877 if (flags
& CONTEXT_FLOATING_POINT
)
879 to
->FloatSave
= from
->FloatSave
;
881 if (flags
& CONTEXT_EXTENDED_REGISTERS
)
883 memcpy( to
->ExtendedRegisters
, from
->ExtendedRegisters
, sizeof(to
->ExtendedRegisters
) );
885 #elif defined(__x86_64__)
886 flags
&= ~CONTEXT_AMD64
; /* get rid of CPU id */
887 if (flags
& CONTEXT_CONTROL
)
892 to
->SegCs
= from
->SegCs
;
893 to
->SegSs
= from
->SegSs
;
894 to
->EFlags
= from
->EFlags
;
895 to
->MxCsr
= from
->MxCsr
;
897 if (flags
& CONTEXT_INTEGER
)
914 if (flags
& CONTEXT_SEGMENTS
)
916 to
->SegDs
= from
->SegDs
;
917 to
->SegEs
= from
->SegEs
;
918 to
->SegFs
= from
->SegFs
;
919 to
->SegGs
= from
->SegGs
;
921 if (flags
& CONTEXT_FLOATING_POINT
)
923 to
->u
.FltSave
= from
->u
.FltSave
;
925 if (flags
& CONTEXT_DEBUG_REGISTERS
)
934 #elif defined(__sparc__)
935 flags
&= ~CONTEXT_SPARC
; /* get rid of CPU id */
936 if (flags
& CONTEXT_CONTROL
)
945 if (flags
& CONTEXT_INTEGER
)
980 if (flags
& CONTEXT_FLOATING_POINT
)
984 #elif defined(__powerpc__)
986 if (flags
& CONTEXT_CONTROL
)
992 if (flags
& CONTEXT_INTEGER
)
994 to
->Gpr0
= from
->Gpr0
;
995 to
->Gpr1
= from
->Gpr1
;
996 to
->Gpr2
= from
->Gpr2
;
997 to
->Gpr3
= from
->Gpr3
;
998 to
->Gpr4
= from
->Gpr4
;
999 to
->Gpr5
= from
->Gpr5
;
1000 to
->Gpr6
= from
->Gpr6
;
1001 to
->Gpr7
= from
->Gpr7
;
1002 to
->Gpr8
= from
->Gpr8
;
1003 to
->Gpr9
= from
->Gpr9
;
1004 to
->Gpr10
= from
->Gpr10
;
1005 to
->Gpr11
= from
->Gpr11
;
1006 to
->Gpr12
= from
->Gpr12
;
1007 to
->Gpr13
= from
->Gpr13
;
1008 to
->Gpr14
= from
->Gpr14
;
1009 to
->Gpr15
= from
->Gpr15
;
1010 to
->Gpr16
= from
->Gpr16
;
1011 to
->Gpr17
= from
->Gpr17
;
1012 to
->Gpr18
= from
->Gpr18
;
1013 to
->Gpr19
= from
->Gpr19
;
1014 to
->Gpr20
= from
->Gpr20
;
1015 to
->Gpr21
= from
->Gpr21
;
1016 to
->Gpr22
= from
->Gpr22
;
1017 to
->Gpr23
= from
->Gpr23
;
1018 to
->Gpr24
= from
->Gpr24
;
1019 to
->Gpr25
= from
->Gpr25
;
1020 to
->Gpr26
= from
->Gpr26
;
1021 to
->Gpr27
= from
->Gpr27
;
1022 to
->Gpr28
= from
->Gpr28
;
1023 to
->Gpr29
= from
->Gpr29
;
1024 to
->Gpr30
= from
->Gpr30
;
1025 to
->Gpr31
= from
->Gpr31
;
1026 to
->Xer
= from
->Xer
;
1029 if (flags
& CONTEXT_FLOATING_POINT
)
1031 to
->Fpr0
= from
->Fpr0
;
1032 to
->Fpr1
= from
->Fpr1
;
1033 to
->Fpr2
= from
->Fpr2
;
1034 to
->Fpr3
= from
->Fpr3
;
1035 to
->Fpr4
= from
->Fpr4
;
1036 to
->Fpr5
= from
->Fpr5
;
1037 to
->Fpr6
= from
->Fpr6
;
1038 to
->Fpr7
= from
->Fpr7
;
1039 to
->Fpr8
= from
->Fpr8
;
1040 to
->Fpr9
= from
->Fpr9
;
1041 to
->Fpr10
= from
->Fpr10
;
1042 to
->Fpr11
= from
->Fpr11
;
1043 to
->Fpr12
= from
->Fpr12
;
1044 to
->Fpr13
= from
->Fpr13
;
1045 to
->Fpr14
= from
->Fpr14
;
1046 to
->Fpr15
= from
->Fpr15
;
1047 to
->Fpr16
= from
->Fpr16
;
1048 to
->Fpr17
= from
->Fpr17
;
1049 to
->Fpr18
= from
->Fpr18
;
1050 to
->Fpr19
= from
->Fpr19
;
1051 to
->Fpr20
= from
->Fpr20
;
1052 to
->Fpr21
= from
->Fpr21
;
1053 to
->Fpr22
= from
->Fpr22
;
1054 to
->Fpr23
= from
->Fpr23
;
1055 to
->Fpr24
= from
->Fpr24
;
1056 to
->Fpr25
= from
->Fpr25
;
1057 to
->Fpr26
= from
->Fpr26
;
1058 to
->Fpr27
= from
->Fpr27
;
1059 to
->Fpr28
= from
->Fpr28
;
1060 to
->Fpr29
= from
->Fpr29
;
1061 to
->Fpr30
= from
->Fpr30
;
1062 to
->Fpr31
= from
->Fpr31
;
1063 to
->Fpscr
= from
->Fpscr
;
1066 #error You must implement context copying for your CPU
1071 /***********************************************************************
1072 * NtGetContextThread (NTDLL.@)
1073 * ZwGetContextThread (NTDLL.@)
1075 NTSTATUS WINAPI
NtGetContextThread( HANDLE handle
, CONTEXT
*context
)
1080 DWORD needed_flags
= context
->ContextFlags
;
1081 BOOL self
= (handle
== GetCurrentThread());
1084 /* on i386 debug registers always require a server call */
1085 if (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
)) self
= FALSE
;
1090 SERVER_START_REQ( get_thread_context
)
1092 req
->handle
= wine_server_obj_handle( handle
);
1093 req
->flags
= context
->ContextFlags
;
1095 wine_server_set_reply( req
, &ctx
, sizeof(ctx
) );
1096 ret
= wine_server_call( req
);
1101 if (ret
== STATUS_PENDING
)
1103 if (NtSuspendThread( handle
, &dummy
) == STATUS_SUCCESS
)
1105 for (i
= 0; i
< 100; i
++)
1107 SERVER_START_REQ( get_thread_context
)
1109 req
->handle
= wine_server_obj_handle( handle
);
1110 req
->flags
= context
->ContextFlags
;
1112 wine_server_set_reply( req
, &ctx
, sizeof(ctx
) );
1113 ret
= wine_server_call( req
);
1116 if (ret
== STATUS_PENDING
)
1118 LARGE_INTEGER timeout
;
1119 timeout
.QuadPart
= -10000;
1120 NtDelayExecution( FALSE
, &timeout
);
1124 NtResumeThread( handle
, &dummy
);
1126 if (ret
== STATUS_PENDING
) ret
= STATUS_ACCESS_DENIED
;
1128 if (ret
) return ret
;
1129 copy_context( context
, &ctx
, context
->ContextFlags
& ctx
.ContextFlags
);
1130 needed_flags
&= ~ctx
.ContextFlags
;
1137 RtlCaptureContext( &ctx
);
1138 copy_context( context
, &ctx
, ctx
.ContextFlags
& needed_flags
);
1141 /* update the cached version of the debug registers */
1142 if (context
->ContextFlags
& (CONTEXT_DEBUG_REGISTERS
& ~CONTEXT_i386
))
1144 struct ntdll_thread_regs
* const regs
= ntdll_get_thread_regs();
1145 regs
->dr0
= context
->Dr0
;
1146 regs
->dr1
= context
->Dr1
;
1147 regs
->dr2
= context
->Dr2
;
1148 regs
->dr3
= context
->Dr3
;
1149 regs
->dr6
= context
->Dr6
;
1150 regs
->dr7
= context
->Dr7
;
1154 return STATUS_SUCCESS
;
1158 /******************************************************************************
1159 * NtQueryInformationThread (NTDLL.@)
1160 * ZwQueryInformationThread (NTDLL.@)
1162 NTSTATUS WINAPI
NtQueryInformationThread( HANDLE handle
, THREADINFOCLASS
class,
1163 void *data
, ULONG length
, ULONG
*ret_len
)
1169 case ThreadBasicInformation
:
1171 THREAD_BASIC_INFORMATION info
;
1172 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
1174 SERVER_START_REQ( get_thread_info
)
1176 req
->handle
= wine_server_obj_handle( handle
);
1178 if (!(status
= wine_server_call( req
)))
1180 info
.ExitStatus
= reply
->exit_code
;
1181 info
.TebBaseAddress
= wine_server_get_ptr( reply
->teb
);
1182 info
.ClientId
.UniqueProcess
= ULongToHandle(reply
->pid
);
1183 info
.ClientId
.UniqueThread
= ULongToHandle(reply
->tid
);
1184 info
.AffinityMask
= reply
->affinity
& affinity_mask
;
1185 info
.Priority
= reply
->priority
;
1186 info
.BasePriority
= reply
->priority
; /* FIXME */
1190 if (status
== STATUS_SUCCESS
)
1192 if (data
) memcpy( data
, &info
, min( length
, sizeof(info
) ));
1193 if (ret_len
) *ret_len
= min( length
, sizeof(info
) );
1197 case ThreadAffinityMask
:
1199 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
1200 ULONG_PTR affinity
= 0;
1202 SERVER_START_REQ( get_thread_info
)
1204 req
->handle
= wine_server_obj_handle( handle
);
1206 if (!(status
= wine_server_call( req
)))
1207 affinity
= reply
->affinity
& affinity_mask
;
1210 if (status
== STATUS_SUCCESS
)
1212 if (data
) memcpy( data
, &affinity
, min( length
, sizeof(affinity
) ));
1213 if (ret_len
) *ret_len
= min( length
, sizeof(affinity
) );
1219 KERNEL_USER_TIMES kusrt
;
1220 /* We need to do a server call to get the creation time or exit time */
1221 /* This works on any thread */
1222 SERVER_START_REQ( get_thread_info
)
1224 req
->handle
= wine_server_obj_handle( handle
);
1226 status
= wine_server_call( req
);
1227 if (status
== STATUS_SUCCESS
)
1229 kusrt
.CreateTime
.QuadPart
= reply
->creation_time
;
1230 kusrt
.ExitTime
.QuadPart
= reply
->exit_time
;
1234 if (status
== STATUS_SUCCESS
)
1236 /* We call times(2) for kernel time or user time */
1237 /* We can only (portably) do this for the current thread */
1238 if (handle
== GetCurrentThread())
1240 struct tms time_buf
;
1241 long clocks_per_sec
= sysconf(_SC_CLK_TCK
);
1244 kusrt
.KernelTime
.QuadPart
= (ULONGLONG
)time_buf
.tms_stime
* 10000000 / clocks_per_sec
;
1245 kusrt
.UserTime
.QuadPart
= (ULONGLONG
)time_buf
.tms_utime
* 10000000 / clocks_per_sec
;
1249 static BOOL reported
= FALSE
;
1251 kusrt
.KernelTime
.QuadPart
= 0;
1252 kusrt
.UserTime
.QuadPart
= 0;
1254 TRACE("Cannot get kerneltime or usertime of other threads\n");
1257 FIXME("Cannot get kerneltime or usertime of other threads\n");
1261 if (data
) memcpy( data
, &kusrt
, min( length
, sizeof(kusrt
) ));
1262 if (ret_len
) *ret_len
= min( length
, sizeof(kusrt
) );
1266 case ThreadDescriptorTableEntry
:
1269 THREAD_DESCRIPTOR_INFORMATION
* tdi
= data
;
1270 if (length
< sizeof(*tdi
))
1271 status
= STATUS_INFO_LENGTH_MISMATCH
;
1272 else if (!(tdi
->Selector
& 4)) /* GDT selector */
1274 unsigned sel
= tdi
->Selector
& ~3; /* ignore RPL */
1275 status
= STATUS_SUCCESS
;
1276 if (!sel
) /* null selector */
1277 memset( &tdi
->Entry
, 0, sizeof(tdi
->Entry
) );
1280 tdi
->Entry
.BaseLow
= 0;
1281 tdi
->Entry
.HighWord
.Bits
.BaseMid
= 0;
1282 tdi
->Entry
.HighWord
.Bits
.BaseHi
= 0;
1283 tdi
->Entry
.LimitLow
= 0xffff;
1284 tdi
->Entry
.HighWord
.Bits
.LimitHi
= 0xf;
1285 tdi
->Entry
.HighWord
.Bits
.Dpl
= 3;
1286 tdi
->Entry
.HighWord
.Bits
.Sys
= 0;
1287 tdi
->Entry
.HighWord
.Bits
.Pres
= 1;
1288 tdi
->Entry
.HighWord
.Bits
.Granularity
= 1;
1289 tdi
->Entry
.HighWord
.Bits
.Default_Big
= 1;
1290 tdi
->Entry
.HighWord
.Bits
.Type
= 0x12;
1291 /* it has to be one of the system GDT selectors */
1292 if (sel
!= (wine_get_ds() & ~3) && sel
!= (wine_get_ss() & ~3))
1294 if (sel
== (wine_get_cs() & ~3))
1295 tdi
->Entry
.HighWord
.Bits
.Type
|= 8; /* code segment */
1296 else status
= STATUS_ACCESS_DENIED
;
1302 SERVER_START_REQ( get_selector_entry
)
1304 req
->handle
= wine_server_obj_handle( handle
);
1305 req
->entry
= tdi
->Selector
>> 3;
1306 status
= wine_server_call( req
);
1309 if (!(reply
->flags
& WINE_LDT_FLAGS_ALLOCATED
))
1310 status
= STATUS_ACCESS_VIOLATION
;
1313 wine_ldt_set_base ( &tdi
->Entry
, (void *)reply
->base
);
1314 wine_ldt_set_limit( &tdi
->Entry
, reply
->limit
);
1315 wine_ldt_set_flags( &tdi
->Entry
, reply
->flags
);
1321 if (status
== STATUS_SUCCESS
&& ret_len
)
1322 /* yes, that's a bit strange, but it's the way it is */
1323 *ret_len
= sizeof(LDT_ENTRY
);
1325 status
= STATUS_NOT_IMPLEMENTED
;
1329 case ThreadAmILastThread
:
1331 SERVER_START_REQ(get_thread_info
)
1333 req
->handle
= wine_server_obj_handle( handle
);
1335 status
= wine_server_call( req
);
1336 if (status
== STATUS_SUCCESS
)
1338 BOOLEAN last
= reply
->last
;
1339 if (data
) memcpy( data
, &last
, min( length
, sizeof(last
) ));
1340 if (ret_len
) *ret_len
= min( length
, sizeof(last
) );
1346 case ThreadPriority
:
1347 case ThreadBasePriority
:
1348 case ThreadImpersonationToken
:
1349 case ThreadEnableAlignmentFaultFixup
:
1350 case ThreadEventPair_Reusable
:
1351 case ThreadQuerySetWin32StartAddress
:
1352 case ThreadZeroTlsCell
:
1353 case ThreadPerformanceCount
:
1354 case ThreadIdealProcessor
:
1355 case ThreadPriorityBoost
:
1356 case ThreadSetTlsArrayAddress
:
1357 case ThreadIsIoPending
:
1359 FIXME( "info class %d not supported yet\n", class );
1360 return STATUS_NOT_IMPLEMENTED
;
1365 /******************************************************************************
1366 * NtSetInformationThread (NTDLL.@)
1367 * ZwSetInformationThread (NTDLL.@)
1369 NTSTATUS WINAPI
NtSetInformationThread( HANDLE handle
, THREADINFOCLASS
class,
1370 LPCVOID data
, ULONG length
)
1375 case ThreadZeroTlsCell
:
1376 if (handle
== GetCurrentThread())
1381 if (length
!= sizeof(DWORD
)) return STATUS_INVALID_PARAMETER
;
1382 index
= *(const DWORD
*)data
;
1383 if (index
< TLS_MINIMUM_AVAILABLE
)
1385 RtlAcquirePebLock();
1386 for (entry
= tls_links
.Flink
; entry
!= &tls_links
; entry
= entry
->Flink
)
1388 TEB
*teb
= CONTAINING_RECORD(entry
, TEB
, TlsLinks
);
1389 teb
->TlsSlots
[index
] = 0;
1391 RtlReleasePebLock();
1395 index
-= TLS_MINIMUM_AVAILABLE
;
1396 if (index
>= 8 * sizeof(NtCurrentTeb()->Peb
->TlsExpansionBitmapBits
))
1397 return STATUS_INVALID_PARAMETER
;
1398 RtlAcquirePebLock();
1399 for (entry
= tls_links
.Flink
; entry
!= &tls_links
; entry
= entry
->Flink
)
1401 TEB
*teb
= CONTAINING_RECORD(entry
, TEB
, TlsLinks
);
1402 if (teb
->TlsExpansionSlots
) teb
->TlsExpansionSlots
[index
] = 0;
1404 RtlReleasePebLock();
1406 return STATUS_SUCCESS
;
1408 FIXME( "ZeroTlsCell not supported on other threads\n" );
1409 return STATUS_NOT_IMPLEMENTED
;
1411 case ThreadImpersonationToken
:
1413 const HANDLE
*phToken
= data
;
1414 if (length
!= sizeof(HANDLE
)) return STATUS_INVALID_PARAMETER
;
1415 TRACE("Setting ThreadImpersonationToken handle to %p\n", *phToken
);
1416 SERVER_START_REQ( set_thread_info
)
1418 req
->handle
= wine_server_obj_handle( handle
);
1419 req
->token
= wine_server_obj_handle( *phToken
);
1420 req
->mask
= SET_THREAD_INFO_TOKEN
;
1421 status
= wine_server_call( req
);
1426 case ThreadBasePriority
:
1428 const DWORD
*pprio
= data
;
1429 if (length
!= sizeof(DWORD
)) return STATUS_INVALID_PARAMETER
;
1430 SERVER_START_REQ( set_thread_info
)
1432 req
->handle
= wine_server_obj_handle( handle
);
1433 req
->priority
= *pprio
;
1434 req
->mask
= SET_THREAD_INFO_PRIORITY
;
1435 status
= wine_server_call( req
);
1440 case ThreadAffinityMask
:
1442 const ULONG_PTR affinity_mask
= ((ULONG_PTR
)1 << NtCurrentTeb()->Peb
->NumberOfProcessors
) - 1;
1443 const ULONG_PTR
*paff
= data
;
1444 if (length
!= sizeof(ULONG_PTR
)) return STATUS_INVALID_PARAMETER
;
1445 if (*paff
& ~affinity_mask
) return STATUS_INVALID_PARAMETER
;
1446 SERVER_START_REQ( set_thread_info
)
1448 req
->handle
= wine_server_obj_handle( handle
);
1449 req
->affinity
= *paff
;
1450 req
->mask
= SET_THREAD_INFO_AFFINITY
;
1451 status
= wine_server_call( req
);
1456 case ThreadBasicInformation
:
1458 case ThreadPriority
:
1459 case ThreadDescriptorTableEntry
:
1460 case ThreadEnableAlignmentFaultFixup
:
1461 case ThreadEventPair_Reusable
:
1462 case ThreadQuerySetWin32StartAddress
:
1463 case ThreadPerformanceCount
:
1464 case ThreadAmILastThread
:
1465 case ThreadIdealProcessor
:
1466 case ThreadPriorityBoost
:
1467 case ThreadSetTlsArrayAddress
:
1468 case ThreadIsIoPending
:
1470 FIXME( "info class %d not supported yet\n", class );
1471 return STATUS_NOT_IMPLEMENTED
;
1476 /**********************************************************************
1477 * NtCurrentTeb (NTDLL.@)
1479 #if defined(__i386__) && defined(__GNUC__)
1481 __ASM_GLOBAL_FUNC( NtCurrentTeb
, ".byte 0x64\n\tmovl 0x18,%eax\n\tret" )
1483 #elif defined(__i386__) && defined(_MSC_VER)
1485 /* Nothing needs to be done. MS C "magically" exports the inline version from winnt.h */
1487 #elif defined(__x86_64__) && defined(__GNUC__)
1489 /* not exported on x86_64 */
1493 /**********************************************************************/
1495 TEB
* WINAPI
NtCurrentTeb(void)
1497 return pthread_functions
.get_current_teb();
1500 #endif /* __i386__ */