push 9eb9af089d68d39110a91889d3a673043db63c4b
[wine/hacks.git] / dlls / kernel32 / thread.c
blobb5a37081f48ca34360eee9d087ec5cc2ee4a10d0
1 /*
2 * Win32 threads
4 * Copyright 1996 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
21 #include "config.h"
22 #include "wine/port.h"
24 #include <assert.h>
25 #include <fcntl.h>
26 #include <stdarg.h>
27 #include <sys/types.h>
28 #ifdef HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
32 #include "ntstatus.h"
33 #define WIN32_NO_STATUS
34 #include "windef.h"
35 #include "winbase.h"
36 #include "winerror.h"
37 #include "winternl.h"
38 #include "wine/winbase16.h"
39 #include "wine/exception.h"
40 #include "wine/library.h"
41 #include "wine/server.h"
42 #include "wine/debug.h"
44 #include "kernel_private.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(thread);
49 /***********************************************************************
50 * CreateThread (KERNEL32.@)
52 HANDLE WINAPI CreateThread( SECURITY_ATTRIBUTES *sa, SIZE_T stack,
53 LPTHREAD_START_ROUTINE start, LPVOID param,
54 DWORD flags, LPDWORD id )
56 return CreateRemoteThread( GetCurrentProcess(),
57 sa, stack, start, param, flags, id );
61 /***************************************************************************
62 * CreateRemoteThread (KERNEL32.@)
64 * Creates a thread that runs in the address space of another process
66 * PARAMS
68 * RETURNS
69 * Success: Handle to the new thread.
70 * Failure: NULL. Use GetLastError() to find the error cause.
72 * BUGS
73 * Improper memory allocation: there's no ability to free new_thread_info
74 * in other process.
75 * Bad start address for RtlCreateUserThread because the library
76 * may be loaded at different address in other process.
78 HANDLE WINAPI CreateRemoteThread( HANDLE hProcess, SECURITY_ATTRIBUTES *sa, SIZE_T stack,
79 LPTHREAD_START_ROUTINE start, LPVOID param,
80 DWORD flags, LPDWORD id )
82 HANDLE handle;
83 CLIENT_ID client_id;
84 NTSTATUS status;
85 SIZE_T stack_reserve = 0, stack_commit = 0;
87 if (flags & STACK_SIZE_PARAM_IS_A_RESERVATION) stack_reserve = stack;
88 else stack_commit = stack;
90 status = RtlCreateUserThread( hProcess, NULL, TRUE,
91 NULL, stack_reserve, stack_commit,
92 (PRTL_THREAD_START_ROUTINE)start, param, &handle, &client_id );
93 if (status == STATUS_SUCCESS)
95 if (id) *id = HandleToULong(client_id.UniqueThread);
96 if (sa && (sa->nLength >= sizeof(*sa)) && sa->bInheritHandle)
97 SetHandleInformation( handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT );
98 if (!(flags & CREATE_SUSPENDED))
100 ULONG ret;
101 if (NtResumeThread( handle, &ret ))
103 NtClose( handle );
104 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
105 handle = 0;
109 else
111 SetLastError( RtlNtStatusToDosError(status) );
112 handle = 0;
114 return handle;
118 /***********************************************************************
119 * OpenThread [KERNEL32.@] Retrieves a handle to a thread from its thread id
121 HANDLE WINAPI OpenThread( DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwThreadId )
123 NTSTATUS status;
124 HANDLE handle;
125 OBJECT_ATTRIBUTES attr;
126 CLIENT_ID cid;
128 attr.Length = sizeof(attr);
129 attr.RootDirectory = 0;
130 attr.Attributes = bInheritHandle ? OBJ_INHERIT : 0;
131 attr.ObjectName = NULL;
132 attr.SecurityDescriptor = NULL;
133 attr.SecurityQualityOfService = NULL;
135 cid.UniqueProcess = 0; /* FIXME */
136 cid.UniqueThread = ULongToHandle(dwThreadId);
137 status = NtOpenThread( &handle, dwDesiredAccess, &attr, &cid );
138 if (status)
140 SetLastError( RtlNtStatusToDosError(status) );
141 handle = 0;
143 return handle;
147 /***********************************************************************
148 * ExitThread [KERNEL32.@] Ends a thread
150 * RETURNS
151 * None
153 void WINAPI ExitThread( DWORD code ) /* [in] Exit code for this thread */
155 RtlFreeThreadActivationContextStack();
156 RtlExitUserThread( code );
160 /**********************************************************************
161 * TerminateThread [KERNEL32.@] Terminates a thread
163 * RETURNS
164 * Success: TRUE
165 * Failure: FALSE
167 BOOL WINAPI TerminateThread( HANDLE handle, /* [in] Handle to thread */
168 DWORD exit_code) /* [in] Exit code for thread */
170 NTSTATUS status = NtTerminateThread( handle, exit_code );
171 if (status) SetLastError( RtlNtStatusToDosError(status) );
172 return !status;
176 /***********************************************************************
177 * FreeLibraryAndExitThread (KERNEL32.@)
179 void WINAPI FreeLibraryAndExitThread(HINSTANCE hLibModule, DWORD dwExitCode)
181 FreeLibrary(hLibModule);
182 ExitThread(dwExitCode);
186 /**********************************************************************
187 * GetExitCodeThread (KERNEL32.@)
189 * Gets termination status of thread.
191 * RETURNS
192 * Success: TRUE
193 * Failure: FALSE
195 BOOL WINAPI GetExitCodeThread(
196 HANDLE hthread, /* [in] Handle to thread */
197 LPDWORD exitcode) /* [out] Address to receive termination status */
199 THREAD_BASIC_INFORMATION info;
200 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
201 &info, sizeof(info), NULL );
203 if (status)
205 SetLastError( RtlNtStatusToDosError(status) );
206 return FALSE;
208 if (exitcode) *exitcode = info.ExitStatus;
209 return TRUE;
213 /***********************************************************************
214 * SetThreadContext [KERNEL32.@] Sets context of thread.
216 * RETURNS
217 * Success: TRUE
218 * Failure: FALSE
220 BOOL WINAPI SetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
221 const CONTEXT *context ) /* [in] Address of context structure */
223 NTSTATUS status = NtSetContextThread( handle, context );
224 if (status) SetLastError( RtlNtStatusToDosError(status) );
225 return !status;
229 /***********************************************************************
230 * GetThreadContext [KERNEL32.@] Retrieves context of thread.
232 * RETURNS
233 * Success: TRUE
234 * Failure: FALSE
236 BOOL WINAPI GetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
237 CONTEXT *context ) /* [out] Address of context structure */
239 NTSTATUS status = NtGetContextThread( handle, context );
240 if (status) SetLastError( RtlNtStatusToDosError(status) );
241 return !status;
245 /**********************************************************************
246 * SuspendThread [KERNEL32.@] Suspends a thread.
248 * RETURNS
249 * Success: Previous suspend count
250 * Failure: 0xFFFFFFFF
252 DWORD WINAPI SuspendThread( HANDLE hthread ) /* [in] Handle to the thread */
254 DWORD ret;
255 NTSTATUS status = NtSuspendThread( hthread, &ret );
257 if (status)
259 ret = ~0U;
260 SetLastError( RtlNtStatusToDosError(status) );
262 return ret;
266 /**********************************************************************
267 * ResumeThread [KERNEL32.@] Resumes a thread.
269 * Decrements a thread's suspend count. When count is zero, the
270 * execution of the thread is resumed.
272 * RETURNS
273 * Success: Previous suspend count
274 * Failure: 0xFFFFFFFF
275 * Already running: 0
277 DWORD WINAPI ResumeThread( HANDLE hthread ) /* [in] Identifies thread to restart */
279 DWORD ret;
280 NTSTATUS status = NtResumeThread( hthread, &ret );
282 if (status)
284 ret = ~0U;
285 SetLastError( RtlNtStatusToDosError(status) );
287 return ret;
291 /**********************************************************************
292 * GetThreadPriority [KERNEL32.@] Returns priority for thread.
294 * RETURNS
295 * Success: Thread's priority level.
296 * Failure: THREAD_PRIORITY_ERROR_RETURN
298 INT WINAPI GetThreadPriority(
299 HANDLE hthread) /* [in] Handle to thread */
301 THREAD_BASIC_INFORMATION info;
302 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
303 &info, sizeof(info), NULL );
305 if (status)
307 SetLastError( RtlNtStatusToDosError(status) );
308 return THREAD_PRIORITY_ERROR_RETURN;
310 return info.Priority;
314 /**********************************************************************
315 * SetThreadPriority [KERNEL32.@] Sets priority for thread.
317 * RETURNS
318 * Success: TRUE
319 * Failure: FALSE
321 BOOL WINAPI SetThreadPriority(
322 HANDLE hthread, /* [in] Handle to thread */
323 INT priority) /* [in] Thread priority level */
325 DWORD prio = priority;
326 NTSTATUS status;
328 status = NtSetInformationThread(hthread, ThreadBasePriority,
329 &prio, sizeof(prio));
331 if (status)
333 SetLastError( RtlNtStatusToDosError(status) );
334 return FALSE;
337 return TRUE;
341 /**********************************************************************
342 * GetThreadPriorityBoost [KERNEL32.@] Returns priority boost for thread.
344 * Always reports that priority boost is disabled.
346 * RETURNS
347 * Success: TRUE.
348 * Failure: FALSE
350 BOOL WINAPI GetThreadPriorityBoost(
351 HANDLE hthread, /* [in] Handle to thread */
352 PBOOL pstate) /* [out] pointer to var that receives the boost state */
354 if (pstate) *pstate = FALSE;
355 return NO_ERROR;
359 /**********************************************************************
360 * SetThreadPriorityBoost [KERNEL32.@] Sets priority boost for thread.
362 * Priority boost is not implemented. This function always returns
363 * FALSE and sets last error to ERROR_CALL_NOT_IMPLEMENTED
365 * RETURNS
366 * Always returns FALSE to indicate a failure
368 BOOL WINAPI SetThreadPriorityBoost(
369 HANDLE hthread, /* [in] Handle to thread */
370 BOOL disable) /* [in] TRUE to disable priority boost */
372 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
373 return FALSE;
377 /**********************************************************************
378 * SetThreadAffinityMask (KERNEL32.@)
380 DWORD_PTR WINAPI SetThreadAffinityMask( HANDLE hThread, DWORD_PTR dwThreadAffinityMask )
382 NTSTATUS status;
383 THREAD_BASIC_INFORMATION tbi;
385 status = NtQueryInformationThread( hThread, ThreadBasicInformation,
386 &tbi, sizeof(tbi), NULL );
387 if (status)
389 SetLastError( RtlNtStatusToDosError(status) );
390 return 0;
392 status = NtSetInformationThread( hThread, ThreadAffinityMask,
393 &dwThreadAffinityMask,
394 sizeof(dwThreadAffinityMask));
395 if (status)
397 SetLastError( RtlNtStatusToDosError(status) );
398 return 0;
400 return tbi.AffinityMask;
404 /**********************************************************************
405 * SetThreadIdealProcessor [KERNEL32.@] Obtains timing information.
407 * RETURNS
408 * Success: Value of last call to SetThreadIdealProcessor
409 * Failure: -1
411 DWORD WINAPI SetThreadIdealProcessor(
412 HANDLE hThread, /* [in] Specifies the thread of interest */
413 DWORD dwIdealProcessor) /* [in] Specifies the new preferred processor */
415 FIXME("(%p): stub\n",hThread);
416 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
417 return -1L;
421 /* callback for QueueUserAPC */
422 static void CALLBACK call_user_apc( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3 )
424 PAPCFUNC func = (PAPCFUNC)arg1;
425 func( arg2 );
428 /***********************************************************************
429 * QueueUserAPC (KERNEL32.@)
431 DWORD WINAPI QueueUserAPC( PAPCFUNC func, HANDLE hthread, ULONG_PTR data )
433 NTSTATUS status = NtQueueApcThread( hthread, call_user_apc, (ULONG_PTR)func, data, 0 );
435 if (status) SetLastError( RtlNtStatusToDosError(status) );
436 return !status;
439 /***********************************************************************
440 * QueueUserWorkItem (KERNEL32.@)
442 BOOL WINAPI QueueUserWorkItem( LPTHREAD_START_ROUTINE Function, PVOID Context, ULONG Flags )
444 NTSTATUS status;
446 TRACE("(%p,%p,0x%08x)\n", Function, Context, Flags);
448 status = RtlQueueWorkItem( Function, Context, Flags );
450 if (status) SetLastError( RtlNtStatusToDosError(status) );
451 return !status;
454 /**********************************************************************
455 * GetThreadTimes [KERNEL32.@] Obtains timing information.
457 * RETURNS
458 * Success: TRUE
459 * Failure: FALSE
461 BOOL WINAPI GetThreadTimes(
462 HANDLE thread, /* [in] Specifies the thread of interest */
463 LPFILETIME creationtime, /* [out] When the thread was created */
464 LPFILETIME exittime, /* [out] When the thread was destroyed */
465 LPFILETIME kerneltime, /* [out] Time thread spent in kernel mode */
466 LPFILETIME usertime) /* [out] Time thread spent in user mode */
468 KERNEL_USER_TIMES kusrt;
469 NTSTATUS status;
471 status = NtQueryInformationThread(thread, ThreadTimes, &kusrt,
472 sizeof(kusrt), NULL);
473 if (status)
475 SetLastError( RtlNtStatusToDosError(status) );
476 return FALSE;
478 if (creationtime)
480 creationtime->dwLowDateTime = kusrt.CreateTime.u.LowPart;
481 creationtime->dwHighDateTime = kusrt.CreateTime.u.HighPart;
483 if (exittime)
485 exittime->dwLowDateTime = kusrt.ExitTime.u.LowPart;
486 exittime->dwHighDateTime = kusrt.ExitTime.u.HighPart;
488 if (kerneltime)
490 kerneltime->dwLowDateTime = kusrt.KernelTime.u.LowPart;
491 kerneltime->dwHighDateTime = kusrt.KernelTime.u.HighPart;
493 if (usertime)
495 usertime->dwLowDateTime = kusrt.UserTime.u.LowPart;
496 usertime->dwHighDateTime = kusrt.UserTime.u.HighPart;
499 return TRUE;
502 /**********************************************************************
503 * GetThreadId [KERNEL32.@]
505 * Retrieve the identifier of a thread.
507 * PARAMS
508 * Thread [I] The thread to retrieve the identifier of.
510 * RETURNS
511 * Success: Identifier of the target thread.
512 * Failure: 0
514 DWORD WINAPI GetThreadId(HANDLE Thread)
516 THREAD_BASIC_INFORMATION tbi;
517 NTSTATUS status;
519 TRACE("(%p)\n", Thread);
521 status = NtQueryInformationThread(Thread, ThreadBasicInformation, &tbi,
522 sizeof(tbi), NULL);
523 if (status)
525 SetLastError( RtlNtStatusToDosError(status) );
526 return 0;
529 return HandleToULong(tbi.ClientId.UniqueThread);
533 /**********************************************************************
534 * VWin32_BoostThreadGroup [KERNEL.535]
536 VOID WINAPI VWin32_BoostThreadGroup( DWORD threadId, INT boost )
538 FIXME("(0x%08x,%d): stub\n", threadId, boost);
542 /**********************************************************************
543 * VWin32_BoostThreadStatic [KERNEL.536]
545 VOID WINAPI VWin32_BoostThreadStatic( DWORD threadId, INT boost )
547 FIXME("(0x%08x,%d): stub\n", threadId, boost);
551 /***********************************************************************
552 * GetCurrentThread [KERNEL32.@] Gets pseudohandle for current thread
554 * RETURNS
555 * Pseudohandle for the current thread
557 #undef GetCurrentThread
558 HANDLE WINAPI GetCurrentThread(void)
560 return (HANDLE)0xfffffffe;
564 #ifdef __i386__
566 /***********************************************************************
567 * SetLastError (KERNEL.147)
568 * SetLastError (KERNEL32.@)
570 /* void WINAPI SetLastError( DWORD error ); */
571 __ASM_GLOBAL_FUNC( SetLastError,
572 "movl 4(%esp),%eax\n\t"
573 ".byte 0x64\n\t"
574 "movl %eax,0x34\n\t"
575 "ret $4" )
577 /***********************************************************************
578 * GetLastError (KERNEL.148)
579 * GetLastError (KERNEL32.@)
581 /* DWORD WINAPI GetLastError(void); */
582 __ASM_GLOBAL_FUNC( GetLastError, ".byte 0x64\n\tmovl 0x34,%eax\n\tret" )
584 /***********************************************************************
585 * GetCurrentProcessId (KERNEL.471)
586 * GetCurrentProcessId (KERNEL32.@)
588 /* DWORD WINAPI GetCurrentProcessId(void) */
589 __ASM_GLOBAL_FUNC( GetCurrentProcessId, ".byte 0x64\n\tmovl 0x20,%eax\n\tret" )
591 /***********************************************************************
592 * GetCurrentThreadId (KERNEL.462)
593 * GetCurrentThreadId (KERNEL32.@)
595 /* DWORD WINAPI GetCurrentThreadId(void) */
596 __ASM_GLOBAL_FUNC( GetCurrentThreadId, ".byte 0x64\n\tmovl 0x24,%eax\n\tret" )
598 #else /* __i386__ */
600 /**********************************************************************
601 * SetLastError (KERNEL.147)
602 * SetLastError (KERNEL32.@)
604 * Sets the last-error code.
606 * RETURNS
607 * Nothing.
609 void WINAPI SetLastError( DWORD error ) /* [in] Per-thread error code */
611 NtCurrentTeb()->LastErrorValue = error;
614 /**********************************************************************
615 * GetLastError (KERNEL.148)
616 * GetLastError (KERNEL32.@)
618 * Get the last-error code.
620 * RETURNS
621 * last-error code.
623 DWORD WINAPI GetLastError(void)
625 return NtCurrentTeb()->LastErrorValue;
628 /***********************************************************************
629 * GetCurrentProcessId (KERNEL.471)
630 * GetCurrentProcessId (KERNEL32.@)
632 * Get the current process identifier.
634 * RETURNS
635 * current process identifier
637 DWORD WINAPI GetCurrentProcessId(void)
639 return HandleToULong(NtCurrentTeb()->ClientId.UniqueProcess);
642 /***********************************************************************
643 * GetCurrentThreadId (KERNEL.462)
644 * GetCurrentThreadId (KERNEL32.@)
646 * Get the current thread identifier.
648 * RETURNS
649 * current thread identifier
651 DWORD WINAPI GetCurrentThreadId(void)
653 return HandleToULong(NtCurrentTeb()->ClientId.UniqueThread);
656 #endif /* __i386__ */