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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
28 #include <sys/types.h>
29 #ifdef HAVE_SYS_TIMES_H
30 #include <sys/times.h>
43 #include "wine/winbase16.h"
44 #include "wine/exception.h"
45 #include "wine/library.h"
46 #include "wine/pthread.h"
47 #include "wine/server.h"
48 #include "wine/debug.h"
50 WINE_DEFAULT_DEBUG_CHANNEL(thread);
51 WINE_DECLARE_DEBUG_CHANNEL(relay);
54 /***********************************************************************
57 * Allocate the stack of a thread.
59 TEB *THREAD_InitStack( TEB *teb, DWORD stack_size )
62 DWORD page_size = getpagesize();
65 stack_size = (stack_size + (page_size - 1)) & ~(page_size - 1);
66 if (stack_size < 1024 * 1024) stack_size = 1024 * 1024; /* Xlib needs a large stack */
68 if (!(base = VirtualAlloc( NULL, stack_size, MEM_COMMIT, PAGE_EXECUTE_READWRITE )))
71 teb->DeallocationStack = base;
72 teb->Tib.StackBase = (char *)base + stack_size;
73 teb->Tib.StackLimit = base; /* note: limit is lower than base since the stack grows down */
75 /* Setup guard pages */
77 VirtualProtect( base, 1, PAGE_EXECUTE_READWRITE | PAGE_GUARD, &old_prot );
82 struct new_thread_info
84 LPTHREAD_START_ROUTINE func;
88 /***********************************************************************
91 * Start execution of a newly created thread. Does not return.
93 static void CALLBACK THREAD_Start( void *ptr )
95 struct new_thread_info *info = ptr;
96 LPTHREAD_START_ROUTINE func = info->func;
97 void *arg = info->arg;
99 RtlFreeHeap( GetProcessHeap(), 0, info );
102 DPRINTF("%04lx:Starting thread (entryproc=%p)\n", GetCurrentThreadId(), func );
106 MODULE_DllThreadAttach( NULL );
107 ExitThread( func( arg ) );
109 __EXCEPT(UnhandledExceptionFilter)
111 TerminateThread( GetCurrentThread(), GetExceptionCode() );
117 /***********************************************************************
118 * CreateThread (KERNEL32.@)
120 HANDLE WINAPI CreateThread( SECURITY_ATTRIBUTES *sa, SIZE_T stack,
121 LPTHREAD_START_ROUTINE start, LPVOID param,
122 DWORD flags, LPDWORD id )
127 SIZE_T stack_reserve = 0, stack_commit = 0;
128 struct new_thread_info *info;
130 if (!(info = RtlAllocateHeap( GetProcessHeap(), 0, sizeof(*info) )))
132 SetLastError( ERROR_NOT_ENOUGH_MEMORY );
138 if (flags & STACK_SIZE_PARAM_IS_A_RESERVATION) stack_reserve = stack;
139 else stack_commit = stack;
141 status = RtlCreateUserThread( GetCurrentProcess(), NULL, (flags & CREATE_SUSPENDED) != 0,
142 NULL, stack_reserve, stack_commit,
143 THREAD_Start, info, &handle, &client_id );
144 if (status == STATUS_SUCCESS)
146 if (id) *id = (DWORD)client_id.UniqueThread;
147 if (sa && (sa->nLength >= sizeof(*sa)) && sa->bInheritHandle)
148 SetHandleInformation( handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT );
152 RtlFreeHeap( GetProcessHeap(), 0, info );
153 SetLastError( RtlNtStatusToDosError(status) );
160 /***********************************************************************
161 * OpenThread [KERNEL32.@] Retrieves a handle to a thread from its thread id
163 HANDLE WINAPI OpenThread( DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwThreadId )
166 SERVER_START_REQ( open_thread )
168 req->tid = dwThreadId;
169 req->access = dwDesiredAccess;
170 req->inherit = bInheritHandle;
171 if (!wine_server_call_err( req )) ret = reply->handle;
178 /***********************************************************************
179 * ExitThread [KERNEL32.@] Ends a thread
184 void WINAPI ExitThread( DWORD code ) /* [in] Exit code for this thread */
187 SERVER_START_REQ( terminate_thread )
189 /* send the exit code to the server */
190 req->handle = GetCurrentThread();
191 req->exit_code = code;
192 wine_server_call( req );
199 LdrShutdownProcess();
204 struct wine_pthread_thread_info info;
210 RemoveEntryList( &NtCurrentTeb()->TlsLinks );
213 info.stack_base = NtCurrentTeb()->DeallocationStack;
214 info.teb_base = NtCurrentTeb();
215 info.teb_sel = wine_get_fs();
216 info.exit_status = code;
219 NtFreeVirtualMemory( GetCurrentProcess(), &info.stack_base, &size, MEM_RELEASE | MEM_SYSTEM );
220 info.stack_size = size;
223 NtFreeVirtualMemory( GetCurrentProcess(), &info.teb_base, &size, MEM_RELEASE | MEM_SYSTEM );
224 info.teb_size = size;
226 /* block the async signals */
227 sigemptyset( &block_set );
228 sigaddset( &block_set, SIGALRM );
229 sigaddset( &block_set, SIGIO );
230 sigaddset( &block_set, SIGINT );
231 sigaddset( &block_set, SIGHUP );
232 sigaddset( &block_set, SIGUSR1 );
233 sigaddset( &block_set, SIGUSR2 );
234 sigaddset( &block_set, SIGTERM );
235 sigprocmask( SIG_BLOCK, &block_set, NULL );
237 close( NtCurrentTeb()->wait_fd[0] );
238 close( NtCurrentTeb()->wait_fd[1] );
239 close( NtCurrentTeb()->reply_fd );
240 close( NtCurrentTeb()->request_fd );
242 wine_pthread_exit_thread( &info );
247 /**********************************************************************
248 * TerminateThread [KERNEL32.@] Terminates a thread
254 BOOL WINAPI TerminateThread( HANDLE handle, /* [in] Handle to thread */
255 DWORD exit_code) /* [in] Exit code for thread */
257 NTSTATUS status = NtTerminateThread( handle, exit_code );
258 if (status) SetLastError( RtlNtStatusToDosError(status) );
263 /***********************************************************************
264 * FreeLibraryAndExitThread (KERNEL32.@)
266 void WINAPI FreeLibraryAndExitThread(HINSTANCE hLibModule, DWORD dwExitCode)
268 FreeLibrary(hLibModule);
269 ExitThread(dwExitCode);
273 /**********************************************************************
274 * GetExitCodeThread (KERNEL32.@)
276 * Gets termination status of thread.
282 BOOL WINAPI GetExitCodeThread(
283 HANDLE hthread, /* [in] Handle to thread */
284 LPDWORD exitcode) /* [out] Address to receive termination status */
286 THREAD_BASIC_INFORMATION info;
287 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
288 &info, sizeof(info), NULL );
292 SetLastError( RtlNtStatusToDosError(status) );
295 if (exitcode) *exitcode = info.ExitStatus;
300 /***********************************************************************
301 * SetThreadContext [KERNEL32.@] Sets context of thread.
307 BOOL WINAPI SetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
308 const CONTEXT *context ) /* [in] Address of context structure */
310 NTSTATUS status = NtSetContextThread( handle, context );
311 if (status) SetLastError( RtlNtStatusToDosError(status) );
316 /***********************************************************************
317 * GetThreadContext [KERNEL32.@] Retrieves context of thread.
323 BOOL WINAPI GetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
324 CONTEXT *context ) /* [out] Address of context structure */
326 NTSTATUS status = NtGetContextThread( handle, context );
327 if (status) SetLastError( RtlNtStatusToDosError(status) );
332 /**********************************************************************
333 * SuspendThread [KERNEL32.@] Suspends a thread.
336 * Success: Previous suspend count
337 * Failure: 0xFFFFFFFF
339 DWORD WINAPI SuspendThread( HANDLE hthread ) /* [in] Handle to the thread */
342 NTSTATUS status = NtSuspendThread( hthread, &ret );
347 SetLastError( RtlNtStatusToDosError(status) );
353 /**********************************************************************
354 * ResumeThread [KERNEL32.@] Resumes a thread.
356 * Decrements a thread's suspend count. When count is zero, the
357 * execution of the thread is resumed.
360 * Success: Previous suspend count
361 * Failure: 0xFFFFFFFF
364 DWORD WINAPI ResumeThread( HANDLE hthread ) /* [in] Identifies thread to restart */
367 NTSTATUS status = NtResumeThread( hthread, &ret );
372 SetLastError( RtlNtStatusToDosError(status) );
378 /**********************************************************************
379 * GetThreadPriority [KERNEL32.@] Returns priority for thread.
382 * Success: Thread's priority level.
383 * Failure: THREAD_PRIORITY_ERROR_RETURN
385 INT WINAPI GetThreadPriority(
386 HANDLE hthread) /* [in] Handle to thread */
388 THREAD_BASIC_INFORMATION info;
389 NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
390 &info, sizeof(info), NULL );
394 SetLastError( RtlNtStatusToDosError(status) );
395 return THREAD_PRIORITY_ERROR_RETURN;
397 return info.Priority;
401 /**********************************************************************
402 * SetThreadPriority [KERNEL32.@] Sets priority for thread.
408 BOOL WINAPI SetThreadPriority(
409 HANDLE hthread, /* [in] Handle to thread */
410 INT priority) /* [in] Thread priority level */
413 SERVER_START_REQ( set_thread_info )
415 req->handle = hthread;
416 req->priority = priority;
417 req->mask = SET_THREAD_INFO_PRIORITY;
418 ret = !wine_server_call_err( req );
425 /**********************************************************************
426 * GetThreadPriorityBoost [KERNEL32.@] Returns priority boost for thread.
428 * Always reports that priority boost is disabled.
434 BOOL WINAPI GetThreadPriorityBoost(
435 HANDLE hthread, /* [in] Handle to thread */
436 PBOOL pstate) /* [out] pointer to var that receives the boost state */
438 if (pstate) *pstate = FALSE;
443 /**********************************************************************
444 * SetThreadPriorityBoost [KERNEL32.@] Sets priority boost for thread.
446 * Priority boost is not implemented. Thsi function always returns
447 * FALSE and sets last error to ERROR_CALL_NOT_IMPLEMENTED
450 * Always returns FALSE to indicate a failure
452 BOOL WINAPI SetThreadPriorityBoost(
453 HANDLE hthread, /* [in] Handle to thread */
454 BOOL disable) /* [in] TRUE to disable priority boost */
456 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
461 /**********************************************************************
462 * SetThreadAffinityMask (KERNEL32.@)
464 DWORD WINAPI SetThreadAffinityMask( HANDLE hThread, DWORD dwThreadAffinityMask )
467 SERVER_START_REQ( set_thread_info )
469 req->handle = hThread;
470 req->affinity = dwThreadAffinityMask;
471 req->mask = SET_THREAD_INFO_AFFINITY;
472 ret = !wine_server_call_err( req );
473 /* FIXME: should return previous value */
480 /**********************************************************************
481 * SetThreadIdealProcessor [KERNEL32.@] Obtains timing information.
484 * Success: Value of last call to SetThreadIdealProcessor
487 DWORD WINAPI SetThreadIdealProcessor(
488 HANDLE hThread, /* [in] Specifies the thread of interest */
489 DWORD dwIdealProcessor) /* [in] Specifies the new preferred processor */
491 FIXME("(%p): stub\n",hThread);
492 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
497 /* callback for QueueUserAPC */
498 static void CALLBACK call_user_apc( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3 )
500 PAPCFUNC func = (PAPCFUNC)arg1;
504 /***********************************************************************
505 * QueueUserAPC (KERNEL32.@)
507 DWORD WINAPI QueueUserAPC( PAPCFUNC func, HANDLE hthread, ULONG_PTR data )
509 NTSTATUS status = NtQueueApcThread( hthread, call_user_apc, (ULONG_PTR)func, data, 0 );
511 if (status) SetLastError( RtlNtStatusToDosError(status) );
516 /**********************************************************************
517 * GetThreadTimes [KERNEL32.@] Obtains timing information.
523 BOOL WINAPI GetThreadTimes(
524 HANDLE thread, /* [in] Specifies the thread of interest */
525 LPFILETIME creationtime, /* [out] When the thread was created */
526 LPFILETIME exittime, /* [out] When the thread was destroyed */
527 LPFILETIME kerneltime, /* [out] Time thread spent in kernel mode */
528 LPFILETIME usertime) /* [out] Time thread spent in user mode */
532 if (creationtime || exittime)
534 /* We need to do a server call to get the creation time or exit time */
535 /* This works on any thread */
537 SERVER_START_REQ( get_thread_info )
539 req->handle = thread;
541 if ((ret = !wine_server_call_err( req )))
544 RtlSecondsSince1970ToTime( reply->creation_time, (LARGE_INTEGER*)creationtime );
546 RtlSecondsSince1970ToTime( reply->exit_time, (LARGE_INTEGER*)exittime );
551 if (ret && (kerneltime || usertime))
553 /* We call times(2) for kernel time or user time */
554 /* We can only (portably) do this for the current thread */
555 if (thread == GetCurrentThread())
559 long clocks_per_sec = sysconf(_SC_CLK_TCK);
564 time = (ULONGLONG)time_buf.tms_stime * 10000000 / clocks_per_sec;
565 kerneltime->dwHighDateTime = time >> 32;
566 kerneltime->dwLowDateTime = (DWORD)time;
570 time = (ULONGLONG)time_buf.tms_utime * 10000000 / clocks_per_sec;
571 usertime->dwHighDateTime = time >> 32;
572 usertime->dwLowDateTime = (DWORD)time;
577 if (kerneltime) kerneltime->dwHighDateTime = kerneltime->dwLowDateTime = 0;
578 if (usertime) usertime->dwHighDateTime = usertime->dwLowDateTime = 0;
579 FIXME("Cannot get kerneltime or usertime of other threads\n");
586 /**********************************************************************
587 * VWin32_BoostThreadGroup [KERNEL.535]
589 VOID WINAPI VWin32_BoostThreadGroup( DWORD threadId, INT boost )
591 FIXME("(0x%08lx,%d): stub\n", threadId, boost);
595 /**********************************************************************
596 * VWin32_BoostThreadStatic [KERNEL.536]
598 VOID WINAPI VWin32_BoostThreadStatic( DWORD threadId, INT boost )
600 FIXME("(0x%08lx,%d): stub\n", threadId, boost);
604 /***********************************************************************
605 * GetCurrentThread [KERNEL32.@] Gets pseudohandle for current thread
608 * Pseudohandle for the current thread
610 #undef GetCurrentThread
611 HANDLE WINAPI GetCurrentThread(void)
613 return (HANDLE)0xfffffffe;
619 /***********************************************************************
620 * SetLastError (KERNEL.147)
621 * SetLastError (KERNEL32.@)
623 /* void WINAPI SetLastError( DWORD error ); */
624 __ASM_GLOBAL_FUNC( SetLastError,
625 "movl 4(%esp),%eax\n\t"
630 /***********************************************************************
631 * GetLastError (KERNEL.148)
632 * GetLastError (KERNEL32.@)
634 /* DWORD WINAPI GetLastError(void); */
635 __ASM_GLOBAL_FUNC( GetLastError, ".byte 0x64\n\tmovl 0x34,%eax\n\tret" );
637 /***********************************************************************
638 * GetCurrentProcessId (KERNEL.471)
639 * GetCurrentProcessId (KERNEL32.@)
641 /* DWORD WINAPI GetCurrentProcessId(void) */
642 __ASM_GLOBAL_FUNC( GetCurrentProcessId, ".byte 0x64\n\tmovl 0x20,%eax\n\tret" );
644 /***********************************************************************
645 * GetCurrentThreadId (KERNEL.462)
646 * GetCurrentThreadId (KERNEL32.@)
648 /* DWORD WINAPI GetCurrentThreadId(void) */
649 __ASM_GLOBAL_FUNC( GetCurrentThreadId, ".byte 0x64\n\tmovl 0x24,%eax\n\tret" );
653 /**********************************************************************
654 * SetLastError (KERNEL.147)
655 * SetLastError (KERNEL32.@)
657 * Sets the last-error code.
659 void WINAPI SetLastError( DWORD error ) /* [in] Per-thread error code */
661 NtCurrentTeb()->LastErrorValue = error;
664 /**********************************************************************
665 * GetLastError (KERNEL.148)
666 * GetLastError (KERNEL32.@)
668 * Returns last-error code.
670 DWORD WINAPI GetLastError(void)
672 return NtCurrentTeb()->LastErrorValue;
675 /***********************************************************************
676 * GetCurrentProcessId (KERNEL.471)
677 * GetCurrentProcessId (KERNEL32.@)
679 * Returns process identifier.
681 DWORD WINAPI GetCurrentProcessId(void)
683 return (DWORD)NtCurrentTeb()->ClientId.UniqueProcess;
686 /***********************************************************************
687 * GetCurrentThreadId (KERNEL.462)
688 * GetCurrentThreadId (KERNEL32.@)
690 * Returns thread identifier.
692 DWORD WINAPI GetCurrentThreadId(void)
694 return (DWORD)NtCurrentTeb()->ClientId.UniqueThread;
697 #endif /* __i386__ */