2003-06-24 05:34:15 +02:00
|
|
|
/*
|
|
|
|
* Win32 threads
|
|
|
|
*
|
|
|
|
* Copyright 1996 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-06-24 05:34:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2003-06-24 05:34:15 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "ntstatus.h"
|
2005-11-28 17:32:54 +01:00
|
|
|
#define WIN32_NO_STATUS
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2003-06-24 05:34:15 +02:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
2008-07-03 12:57:43 +02:00
|
|
|
#include "winternl.h"
|
2003-11-27 01:59:36 +01:00
|
|
|
#include "wine/exception.h"
|
2003-09-17 07:31:32 +02:00
|
|
|
#include "wine/library.h"
|
2003-06-24 05:34:15 +02:00
|
|
|
#include "wine/server.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2005-06-14 13:42:34 +02:00
|
|
|
#include "kernel_private.h"
|
|
|
|
|
2003-06-24 05:34:15 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(thread);
|
2003-09-17 07:31:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateThread (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI CreateThread( SECURITY_ATTRIBUTES *sa, SIZE_T stack,
|
|
|
|
LPTHREAD_START_ROUTINE start, LPVOID param,
|
|
|
|
DWORD flags, LPDWORD id )
|
2004-09-22 04:54:13 +02:00
|
|
|
{
|
|
|
|
return CreateRemoteThread( GetCurrentProcess(),
|
|
|
|
sa, stack, start, param, flags, id );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* CreateRemoteThread (KERNEL32.@)
|
|
|
|
*
|
|
|
|
* Creates a thread that runs in the address space of another process
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Handle to the new thread.
|
|
|
|
* Failure: NULL. Use GetLastError() to find the error cause.
|
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
* Improper memory allocation: there's no ability to free new_thread_info
|
|
|
|
* in other process.
|
|
|
|
* Bad start address for RtlCreateUserThread because the library
|
|
|
|
* may be loaded at different address in other process.
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI CreateRemoteThread( HANDLE hProcess, SECURITY_ATTRIBUTES *sa, SIZE_T stack,
|
|
|
|
LPTHREAD_START_ROUTINE start, LPVOID param,
|
|
|
|
DWORD flags, LPDWORD id )
|
2003-09-17 07:31:32 +02:00
|
|
|
{
|
2003-10-31 01:16:20 +01:00
|
|
|
HANDLE handle;
|
|
|
|
CLIENT_ID client_id;
|
|
|
|
NTSTATUS status;
|
|
|
|
SIZE_T stack_reserve = 0, stack_commit = 0;
|
2003-09-17 07:31:32 +02:00
|
|
|
|
2003-10-31 01:16:20 +01:00
|
|
|
if (flags & STACK_SIZE_PARAM_IS_A_RESERVATION) stack_reserve = stack;
|
|
|
|
else stack_commit = stack;
|
2003-09-17 07:31:32 +02:00
|
|
|
|
2004-12-01 16:37:26 +01:00
|
|
|
status = RtlCreateUserThread( hProcess, NULL, TRUE,
|
2003-10-31 01:16:20 +01:00
|
|
|
NULL, stack_reserve, stack_commit,
|
2007-01-18 15:02:11 +01:00
|
|
|
(PRTL_THREAD_START_ROUTINE)start, param, &handle, &client_id );
|
2003-10-31 01:16:20 +01:00
|
|
|
if (status == STATUS_SUCCESS)
|
2003-09-17 07:31:32 +02:00
|
|
|
{
|
2007-05-23 09:36:53 +02:00
|
|
|
if (id) *id = HandleToULong(client_id.UniqueThread);
|
2003-10-31 01:16:20 +01:00
|
|
|
if (sa && (sa->nLength >= sizeof(*sa)) && sa->bInheritHandle)
|
|
|
|
SetHandleInformation( handle, HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT );
|
2004-12-01 16:37:26 +01:00
|
|
|
if (!(flags & CREATE_SUSPENDED))
|
|
|
|
{
|
|
|
|
ULONG ret;
|
|
|
|
if (NtResumeThread( handle, &ret ))
|
|
|
|
{
|
|
|
|
NtClose( handle );
|
|
|
|
SetLastError( ERROR_NOT_ENOUGH_MEMORY );
|
|
|
|
handle = 0;
|
|
|
|
}
|
|
|
|
}
|
2003-09-17 07:31:32 +02:00
|
|
|
}
|
2003-10-31 01:16:20 +01:00
|
|
|
else
|
2003-09-17 07:31:32 +02:00
|
|
|
{
|
2003-10-31 01:16:20 +01:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
handle = 0;
|
2003-09-17 07:31:32 +02:00
|
|
|
}
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* OpenThread [KERNEL32.@] Retrieves a handle to a thread from its thread id
|
|
|
|
*/
|
|
|
|
HANDLE WINAPI OpenThread( DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwThreadId )
|
|
|
|
{
|
2005-06-27 14:03:56 +02:00
|
|
|
NTSTATUS status;
|
|
|
|
HANDLE handle;
|
|
|
|
OBJECT_ATTRIBUTES attr;
|
|
|
|
CLIENT_ID cid;
|
|
|
|
|
|
|
|
attr.Length = sizeof(attr);
|
|
|
|
attr.RootDirectory = 0;
|
|
|
|
attr.Attributes = bInheritHandle ? OBJ_INHERIT : 0;
|
|
|
|
attr.ObjectName = NULL;
|
|
|
|
attr.SecurityDescriptor = NULL;
|
|
|
|
attr.SecurityQualityOfService = NULL;
|
|
|
|
|
|
|
|
cid.UniqueProcess = 0; /* FIXME */
|
2007-05-23 09:36:53 +02:00
|
|
|
cid.UniqueThread = ULongToHandle(dwThreadId);
|
2005-06-27 14:03:56 +02:00
|
|
|
status = NtOpenThread( &handle, dwDesiredAccess, &attr, &cid );
|
|
|
|
if (status)
|
2003-09-17 07:31:32 +02:00
|
|
|
{
|
2005-06-27 14:03:56 +02:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
handle = 0;
|
2003-09-17 07:31:32 +02:00
|
|
|
}
|
2005-06-27 14:03:56 +02:00
|
|
|
return handle;
|
2003-09-17 07:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ExitThread [KERNEL32.@] Ends a thread
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* None
|
|
|
|
*/
|
|
|
|
void WINAPI ExitThread( DWORD code ) /* [in] Exit code for this thread */
|
|
|
|
{
|
2008-10-29 20:37:43 +01:00
|
|
|
RtlFreeThreadActivationContextStack();
|
|
|
|
RtlExitUserThread( code );
|
2003-09-17 07:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* TerminateThread [KERNEL32.@] Terminates a thread
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI TerminateThread( HANDLE handle, /* [in] Handle to thread */
|
|
|
|
DWORD exit_code) /* [in] Exit code for thread */
|
|
|
|
{
|
|
|
|
NTSTATUS status = NtTerminateThread( handle, exit_code );
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* FreeLibraryAndExitThread (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
void WINAPI FreeLibraryAndExitThread(HINSTANCE hLibModule, DWORD dwExitCode)
|
|
|
|
{
|
|
|
|
FreeLibrary(hLibModule);
|
|
|
|
ExitThread(dwExitCode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* GetExitCodeThread (KERNEL32.@)
|
|
|
|
*
|
|
|
|
* Gets termination status of thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetExitCodeThread(
|
|
|
|
HANDLE hthread, /* [in] Handle to thread */
|
|
|
|
LPDWORD exitcode) /* [out] Address to receive termination status */
|
|
|
|
{
|
|
|
|
THREAD_BASIC_INFORMATION info;
|
|
|
|
NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
|
|
|
|
&info, sizeof(info), NULL );
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (exitcode) *exitcode = info.ExitStatus;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-06-24 05:34:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetThreadContext [KERNEL32.@] Sets context of thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
|
|
|
|
const CONTEXT *context ) /* [in] Address of context structure */
|
|
|
|
{
|
|
|
|
NTSTATUS status = NtSetContextThread( handle, context );
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetThreadContext [KERNEL32.@] Retrieves context of thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetThreadContext( HANDLE handle, /* [in] Handle to thread with context */
|
|
|
|
CONTEXT *context ) /* [out] Address of context structure */
|
|
|
|
{
|
|
|
|
NTSTATUS status = NtGetContextThread( handle, context );
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* SuspendThread [KERNEL32.@] Suspends a thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Previous suspend count
|
|
|
|
* Failure: 0xFFFFFFFF
|
|
|
|
*/
|
|
|
|
DWORD WINAPI SuspendThread( HANDLE hthread ) /* [in] Handle to the thread */
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
NTSTATUS status = NtSuspendThread( hthread, &ret );
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
ret = ~0U;
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* ResumeThread [KERNEL32.@] Resumes a thread.
|
|
|
|
*
|
|
|
|
* Decrements a thread's suspend count. When count is zero, the
|
|
|
|
* execution of the thread is resumed.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Previous suspend count
|
|
|
|
* Failure: 0xFFFFFFFF
|
|
|
|
* Already running: 0
|
|
|
|
*/
|
|
|
|
DWORD WINAPI ResumeThread( HANDLE hthread ) /* [in] Identifies thread to restart */
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
NTSTATUS status = NtResumeThread( hthread, &ret );
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
ret = ~0U;
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* GetThreadPriority [KERNEL32.@] Returns priority for thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Thread's priority level.
|
|
|
|
* Failure: THREAD_PRIORITY_ERROR_RETURN
|
|
|
|
*/
|
|
|
|
INT WINAPI GetThreadPriority(
|
|
|
|
HANDLE hthread) /* [in] Handle to thread */
|
|
|
|
{
|
2003-07-09 04:57:57 +02:00
|
|
|
THREAD_BASIC_INFORMATION info;
|
|
|
|
NTSTATUS status = NtQueryInformationThread( hthread, ThreadBasicInformation,
|
|
|
|
&info, sizeof(info), NULL );
|
|
|
|
|
|
|
|
if (status)
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2003-07-09 04:57:57 +02:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return THREAD_PRIORITY_ERROR_RETURN;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2003-07-09 04:57:57 +02:00
|
|
|
return info.Priority;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* SetThreadPriority [KERNEL32.@] Sets priority for thread.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetThreadPriority(
|
|
|
|
HANDLE hthread, /* [in] Handle to thread */
|
|
|
|
INT priority) /* [in] Thread priority level */
|
|
|
|
{
|
2005-09-07 15:25:35 +02:00
|
|
|
DWORD prio = priority;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
status = NtSetInformationThread(hthread, ThreadBasePriority,
|
|
|
|
&prio, sizeof(prio));
|
|
|
|
|
|
|
|
if (status)
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2005-09-07 15:25:35 +02:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return FALSE;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2005-09-07 15:25:35 +02:00
|
|
|
|
|
|
|
return TRUE;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* GetThreadPriorityBoost [KERNEL32.@] Returns priority boost for thread.
|
|
|
|
*
|
|
|
|
* Always reports that priority boost is disabled.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE.
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetThreadPriorityBoost(
|
|
|
|
HANDLE hthread, /* [in] Handle to thread */
|
|
|
|
PBOOL pstate) /* [out] pointer to var that receives the boost state */
|
|
|
|
{
|
|
|
|
if (pstate) *pstate = FALSE;
|
2009-08-29 12:22:13 +02:00
|
|
|
return TRUE;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* SetThreadPriorityBoost [KERNEL32.@] Sets priority boost for thread.
|
|
|
|
*
|
2008-03-17 21:51:39 +01:00
|
|
|
* Priority boost is not implemented. This function always returns
|
2003-06-24 05:34:15 +02:00
|
|
|
* FALSE and sets last error to ERROR_CALL_NOT_IMPLEMENTED
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Always returns FALSE to indicate a failure
|
|
|
|
*/
|
|
|
|
BOOL WINAPI SetThreadPriorityBoost(
|
|
|
|
HANDLE hthread, /* [in] Handle to thread */
|
|
|
|
BOOL disable) /* [in] TRUE to disable priority boost */
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* SetThreadAffinityMask (KERNEL32.@)
|
|
|
|
*/
|
2007-05-21 15:12:50 +02:00
|
|
|
DWORD_PTR WINAPI SetThreadAffinityMask( HANDLE hThread, DWORD_PTR dwThreadAffinityMask )
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2006-01-11 12:32:19 +01:00
|
|
|
NTSTATUS status;
|
|
|
|
THREAD_BASIC_INFORMATION tbi;
|
|
|
|
|
|
|
|
status = NtQueryInformationThread( hThread, ThreadBasicInformation,
|
|
|
|
&tbi, sizeof(tbi), NULL );
|
|
|
|
if (status)
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2006-01-11 12:32:19 +01:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return 0;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2006-01-11 12:32:19 +01:00
|
|
|
status = NtSetInformationThread( hThread, ThreadAffinityMask,
|
|
|
|
&dwThreadAffinityMask,
|
|
|
|
sizeof(dwThreadAffinityMask));
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return tbi.AffinityMask;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
2009-05-20 14:46:58 +02:00
|
|
|
* SetThreadIdealProcessor [KERNEL32.@] Sets preferred processor for thread.
|
2003-06-24 05:34:15 +02:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Value of last call to SetThreadIdealProcessor
|
|
|
|
* Failure: -1
|
|
|
|
*/
|
|
|
|
DWORD WINAPI SetThreadIdealProcessor(
|
|
|
|
HANDLE hThread, /* [in] Specifies the thread of interest */
|
|
|
|
DWORD dwIdealProcessor) /* [in] Specifies the new preferred processor */
|
|
|
|
{
|
|
|
|
FIXME("(%p): stub\n",hThread);
|
2009-08-07 13:39:47 +02:00
|
|
|
if (dwIdealProcessor > MAXIMUM_PROCESSORS)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return ~0u;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-28 19:58:45 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* GetThreadSelectorEntry (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetThreadSelectorEntry( HANDLE hthread, DWORD sel, LPLDT_ENTRY ldtent )
|
|
|
|
{
|
|
|
|
THREAD_DESCRIPTOR_INFORMATION tdi;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
tdi.Selector = sel;
|
|
|
|
status = NtQueryInformationThread( hthread, ThreadDescriptorTableEntry, &tdi, sizeof(tdi), NULL);
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*ldtent = tdi.Entry;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-24 05:34:15 +02:00
|
|
|
/* callback for QueueUserAPC */
|
|
|
|
static void CALLBACK call_user_apc( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3 )
|
|
|
|
{
|
|
|
|
PAPCFUNC func = (PAPCFUNC)arg1;
|
|
|
|
func( arg2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* QueueUserAPC (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
DWORD WINAPI QueueUserAPC( PAPCFUNC func, HANDLE hthread, ULONG_PTR data )
|
|
|
|
{
|
|
|
|
NTSTATUS status = NtQueueApcThread( hthread, call_user_apc, (ULONG_PTR)func, data, 0 );
|
|
|
|
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
2005-02-21 22:02:12 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* QueueUserWorkItem (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
BOOL WINAPI QueueUserWorkItem( LPTHREAD_START_ROUTINE Function, PVOID Context, ULONG Flags )
|
|
|
|
{
|
2006-03-13 12:29:04 +01:00
|
|
|
NTSTATUS status;
|
|
|
|
|
2006-10-12 22:56:29 +02:00
|
|
|
TRACE("(%p,%p,0x%08x)\n", Function, Context, Flags);
|
2006-03-13 12:29:04 +01:00
|
|
|
|
|
|
|
status = RtlQueueWorkItem( Function, Context, Flags );
|
|
|
|
|
|
|
|
if (status) SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return !status;
|
2005-02-21 22:02:12 +01:00
|
|
|
}
|
2003-06-24 05:34:15 +02:00
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* GetThreadTimes [KERNEL32.@] Obtains timing information.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE
|
|
|
|
*/
|
|
|
|
BOOL WINAPI GetThreadTimes(
|
|
|
|
HANDLE thread, /* [in] Specifies the thread of interest */
|
|
|
|
LPFILETIME creationtime, /* [out] When the thread was created */
|
|
|
|
LPFILETIME exittime, /* [out] When the thread was destroyed */
|
|
|
|
LPFILETIME kerneltime, /* [out] Time thread spent in kernel mode */
|
|
|
|
LPFILETIME usertime) /* [out] Time thread spent in user mode */
|
|
|
|
{
|
2005-09-13 00:01:33 +02:00
|
|
|
KERNEL_USER_TIMES kusrt;
|
|
|
|
NTSTATUS status;
|
2003-06-24 05:34:15 +02:00
|
|
|
|
2005-09-13 00:01:33 +02:00
|
|
|
status = NtQueryInformationThread(thread, ThreadTimes, &kusrt,
|
|
|
|
sizeof(kusrt), NULL);
|
|
|
|
if (status)
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2005-09-13 00:01:33 +02:00
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return FALSE;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2005-09-13 00:01:33 +02:00
|
|
|
if (creationtime)
|
2003-06-24 05:34:15 +02:00
|
|
|
{
|
2005-09-13 00:01:33 +02:00
|
|
|
creationtime->dwLowDateTime = kusrt.CreateTime.u.LowPart;
|
|
|
|
creationtime->dwHighDateTime = kusrt.CreateTime.u.HighPart;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2005-09-13 00:01:33 +02:00
|
|
|
if (exittime)
|
|
|
|
{
|
|
|
|
exittime->dwLowDateTime = kusrt.ExitTime.u.LowPart;
|
|
|
|
exittime->dwHighDateTime = kusrt.ExitTime.u.HighPart;
|
|
|
|
}
|
|
|
|
if (kerneltime)
|
|
|
|
{
|
|
|
|
kerneltime->dwLowDateTime = kusrt.KernelTime.u.LowPart;
|
|
|
|
kerneltime->dwHighDateTime = kusrt.KernelTime.u.HighPart;
|
|
|
|
}
|
|
|
|
if (usertime)
|
|
|
|
{
|
|
|
|
usertime->dwLowDateTime = kusrt.UserTime.u.LowPart;
|
|
|
|
usertime->dwHighDateTime = kusrt.UserTime.u.HighPart;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
|
|
|
|
2007-11-12 21:09:40 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* GetThreadId [KERNEL32.@]
|
|
|
|
*
|
|
|
|
* Retrieve the identifier of a thread.
|
|
|
|
*
|
|
|
|
* PARAMS
|
2007-12-07 01:03:54 +01:00
|
|
|
* Thread [I] The thread to retrieve the identifier of.
|
2007-11-12 21:09:40 +01:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Identifier of the target thread.
|
|
|
|
* Failure: 0
|
|
|
|
*/
|
|
|
|
DWORD WINAPI GetThreadId(HANDLE Thread)
|
|
|
|
{
|
|
|
|
THREAD_BASIC_INFORMATION tbi;
|
|
|
|
NTSTATUS status;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", Thread);
|
|
|
|
|
|
|
|
status = NtQueryInformationThread(Thread, ThreadBasicInformation, &tbi,
|
|
|
|
sizeof(tbi), NULL);
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return HandleToULong(tbi.ClientId.UniqueThread);
|
|
|
|
}
|
|
|
|
|
2003-06-24 05:34:15 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentThread [KERNEL32.@] Gets pseudohandle for current thread
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Pseudohandle for the current thread
|
|
|
|
*/
|
|
|
|
#undef GetCurrentThread
|
|
|
|
HANDLE WINAPI GetCurrentThread(void)
|
|
|
|
{
|
2008-12-08 15:51:22 +01:00
|
|
|
return (HANDLE)~(ULONG_PTR)1;
|
2003-06-24 05:34:15 +02:00
|
|
|
}
|
2003-10-08 05:57:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __i386__
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetLastError (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
/* void WINAPI SetLastError( DWORD error ); */
|
2009-06-14 15:34:09 +02:00
|
|
|
__ASM_STDCALL_FUNC( SetLastError, 4,
|
2003-10-08 05:57:02 +02:00
|
|
|
"movl 4(%esp),%eax\n\t"
|
|
|
|
".byte 0x64\n\t"
|
2003-11-25 02:53:23 +01:00
|
|
|
"movl %eax,0x34\n\t"
|
2004-06-14 19:04:34 +02:00
|
|
|
"ret $4" )
|
2003-10-08 05:57:02 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetLastError (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
/* DWORD WINAPI GetLastError(void); */
|
2009-06-14 15:34:09 +02:00
|
|
|
__ASM_STDCALL_FUNC( GetLastError, 0, ".byte 0x64\n\tmovl 0x34,%eax\n\tret" )
|
2003-10-08 05:57:02 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentProcessId (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
/* DWORD WINAPI GetCurrentProcessId(void) */
|
2009-06-14 15:34:09 +02:00
|
|
|
__ASM_STDCALL_FUNC( GetCurrentProcessId, 0, ".byte 0x64\n\tmovl 0x20,%eax\n\tret" )
|
2003-10-08 05:57:02 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentThreadId (KERNEL32.@)
|
|
|
|
*/
|
|
|
|
/* DWORD WINAPI GetCurrentThreadId(void) */
|
2009-06-14 15:34:09 +02:00
|
|
|
__ASM_STDCALL_FUNC( GetCurrentThreadId, 0, ".byte 0x64\n\tmovl 0x24,%eax\n\tret" )
|
2003-10-08 05:57:02 +02:00
|
|
|
|
|
|
|
#else /* __i386__ */
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* SetLastError (KERNEL32.@)
|
|
|
|
*
|
|
|
|
* Sets the last-error code.
|
2005-11-08 12:01:03 +01:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Nothing.
|
2003-10-08 05:57:02 +02:00
|
|
|
*/
|
|
|
|
void WINAPI SetLastError( DWORD error ) /* [in] Per-thread error code */
|
|
|
|
{
|
2003-11-25 02:53:23 +01:00
|
|
|
NtCurrentTeb()->LastErrorValue = error;
|
2003-10-08 05:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* GetLastError (KERNEL32.@)
|
|
|
|
*
|
2005-11-08 12:01:03 +01:00
|
|
|
* Get the last-error code.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* last-error code.
|
2003-10-08 05:57:02 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetLastError(void)
|
|
|
|
{
|
2003-11-25 02:53:23 +01:00
|
|
|
return NtCurrentTeb()->LastErrorValue;
|
2003-10-08 05:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentProcessId (KERNEL32.@)
|
|
|
|
*
|
2005-11-08 12:01:03 +01:00
|
|
|
* Get the current process identifier.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* current process identifier
|
2003-10-08 05:57:02 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetCurrentProcessId(void)
|
|
|
|
{
|
2007-05-23 09:36:53 +02:00
|
|
|
return HandleToULong(NtCurrentTeb()->ClientId.UniqueProcess);
|
2003-10-08 05:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCurrentThreadId (KERNEL32.@)
|
|
|
|
*
|
2005-11-08 12:01:03 +01:00
|
|
|
* Get the current thread identifier.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* current thread identifier
|
2003-10-08 05:57:02 +02:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetCurrentThreadId(void)
|
|
|
|
{
|
2007-05-23 09:36:53 +02:00
|
|
|
return HandleToULong(NtCurrentTeb()->ClientId.UniqueThread);
|
2003-10-08 05:57:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __i386__ */
|
2010-02-03 14:37:35 +01:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* rtlmode_to_win32mode
|
|
|
|
*/
|
|
|
|
static DWORD rtlmode_to_win32mode( DWORD rtlmode )
|
|
|
|
{
|
|
|
|
DWORD win32mode = 0;
|
|
|
|
|
|
|
|
if (rtlmode & 0x10)
|
|
|
|
win32mode |= SEM_FAILCRITICALERRORS;
|
|
|
|
if (rtlmode & 0x20)
|
|
|
|
win32mode |= SEM_NOGPFAULTERRORBOX;
|
|
|
|
if (rtlmode & 0x40)
|
|
|
|
win32mode |= SEM_NOOPENFILEERRORBOX;
|
|
|
|
|
|
|
|
return win32mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetThreadErrorMode (KERNEL32.@)
|
2010-02-04 14:22:28 +01:00
|
|
|
*
|
|
|
|
* Set the thread local error mode.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* mode [I] The new error mode, a bitwise or of SEM_FAILCRITICALERRORS,
|
|
|
|
* SEM_NOGPFAULTERRORBOX and SEM_NOOPENFILEERRORBOX.
|
|
|
|
* oldmode [O] Destination of the old error mode (may be NULL)
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE, check GetLastError
|
2010-02-03 14:37:35 +01:00
|
|
|
*/
|
|
|
|
BOOL WINAPI SetThreadErrorMode( DWORD mode, LPDWORD oldmode )
|
|
|
|
{
|
|
|
|
NTSTATUS status;
|
|
|
|
DWORD tmp = 0;
|
|
|
|
|
|
|
|
if (mode & ~(SEM_FAILCRITICALERRORS |
|
|
|
|
SEM_NOGPFAULTERRORBOX |
|
|
|
|
SEM_NOOPENFILEERRORBOX))
|
|
|
|
{
|
|
|
|
SetLastError( ERROR_INVALID_PARAMETER );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode & SEM_FAILCRITICALERRORS)
|
|
|
|
tmp |= 0x10;
|
|
|
|
if (mode & SEM_NOGPFAULTERRORBOX)
|
|
|
|
tmp |= 0x20;
|
|
|
|
if (mode & SEM_NOOPENFILEERRORBOX)
|
|
|
|
tmp |= 0x40;
|
|
|
|
|
|
|
|
status = RtlSetThreadErrorMode( tmp, oldmode );
|
|
|
|
if (status)
|
|
|
|
{
|
|
|
|
SetLastError( RtlNtStatusToDosError(status) );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (oldmode)
|
|
|
|
*oldmode = rtlmode_to_win32mode(*oldmode);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetThreadErrorMode (KERNEL32.@)
|
2010-02-04 14:22:28 +01:00
|
|
|
*
|
|
|
|
* Get the thread local error mode.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* The current thread local error mode.
|
2010-02-03 14:37:35 +01:00
|
|
|
*/
|
|
|
|
DWORD WINAPI GetThreadErrorMode( void )
|
|
|
|
{
|
|
|
|
return rtlmode_to_win32mode( RtlGetThreadErrorMode() );
|
|
|
|
}
|