#ifndef _NTPSAPI_H
//
// User processes and threads
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* Creates a new thread in the specified process.
*
* @param ThreadHandle A pointer to a handle that receives the thread object handle.
* @param DesiredAccess The access rights desired for the thread object.
* @param ObjectAttributes Optional. A pointer to an OBJECT_ATTRIBUTES structure that specifies the attributes of the new thread.
* @param ProcessHandle A handle to the process in which the thread is to be created.
* @param StartRoutine A pointer to the application-defined function to be executed by the thread.
* @param Argument Optional. A pointer to a variable to be passed to the thread.
* @param CreateFlags Flags that control the creation of the thread. These flags are defined as THREAD_CREATE_FLAGS_*.
* @param ZeroBits The number of zero bits in the starting address of the thread's stack.
* @param StackSize The initial size of the thread's stack, in bytes.
* @param MaximumStackSize The maximum size of the thread's stack, in bytes.
* @param AttributeList Optional. A pointer to a list of attributes for the thread.
* @return NTSTATUS Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtCreateThreadEx(
_Out_ PHANDLE ThreadHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_opt_ PCOBJECT_ATTRIBUTES ObjectAttributes,
_In_ HANDLE ProcessHandle,
_In_ PUSER_THREAD_START_ROUTINE StartRoutine,
_In_opt_ PVOID Argument,
_In_ ULONG CreateFlags, // THREAD_CREATE_FLAGS_*
_In_ SIZE_T ZeroBits,
_In_ SIZE_T StackSize,
_In_ SIZE_T MaximumStackSize,
_In_opt_ PPS_ATTRIBUTE_LIST AttributeList
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwCreateThreadEx(
_Out_ PHANDLE ThreadHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_opt_ POBJECT_ATTRIBUTES ObjectAttributes,
_In_ HANDLE ProcessHandle,
_In_ PUSER_THREAD_START_ROUTINE StartRoutine,
_In_opt_ PVOID Argument,
_In_ ULONG CreateFlags, // THREAD_CREATE_FLAGS_*
_In_ SIZE_T ZeroBits,
_In_ SIZE_T StackSize,
_In_ SIZE_T MaximumStackSize,
_In_opt_ PPS_ATTRIBUTE_LIST AttributeList
);
View code on GitHub
Creates a new thread in the specified process.
ThreadHandle
- a pointer to a variable that receives a handle to the new thread.DesiredAccess
- the thread access mask to provide on the returned handle. This value is usually THREAD_ALL_ACCESS
.ObjectAttributes
- an optional pointer to an OBJECT_ATTRIBUTES
structure that specifies attributes for the new object/handle, such as the security descriptor and handle inheritance.ProcessHandle
- a handle to the process where the thread should be created. This can either be the NtCurrentProcess
pseudo-handle or a handle with PROCESS_CREATE_THREAD
access.StartRoutine
- the function to execute on the new thread.Argument
- a user-provided argument to pass to the thread start routine.CreateFlags
- a bit mask that control the properties of the new thread or its creation. See below.ZeroBits
- the number of high-order address bits that must be zero in the base address of the thread's stack. Note that when the value is larger than 32, it becomes a bit mask.StackSize
- the initial size of the stack, in bytes. The system rounds this value up to the nearest page. If this parameter is zero, the new thread uses the default size for the executable.MaximumStackSize
- the maximum size of the stack, in bytes. The system rounds this value up to the nearest page. If this parameter is zero, the new thread uses the default size for the executable.AttributeList
- an optional pointer to a buffer that defines a list of PS_ATTRIBUTE
structures that control various aspects of thread creation and allow retrieving information about the new thread.THREAD_CREATE_FLAGS_CREATE_SUSPENDED
- create the thread in a suspended state instead of allowing it to execute immediately.THREAD_CREATE_FLAGS_SKIP_THREAD_ATTACH
- the thread should skip calling loaded modules with DLL_THREAD_ATTACH
reason.THREAD_CREATE_FLAGS_HIDE_FROM_DEBUGGER
- suppress generation of debug events on the thread.THREAD_CREATE_FLAGS_LOADER_WORKER
- set the corresponding flag in TEB
.THREAD_CREATE_FLAGS_SKIP_LOADER_INIT
- set the corresponding flag in TEB
.THREAD_CREATE_FLAGS_BYPASS_PROCESS_FREEZE
- the thread should not be suspended when the system suspends or freezes the process.Check the corresponding pages for more details.
PS_ATTRIBUTE_CLIENT_ID
- allows retrieving the CLIENT_ID
of the new thread.PS_ATTRIBUTE_TEB_ADDRESS
- allows retrieving the TEB
address of the new thread.PS_ATTRIBUTE_IDEAL_PROCESSOR
- allows specifying the ideal processor for new thread.PS_ATTRIBUTE_UMS_THREAD
- controls user-mode thread scheduling.PS_ATTRIBUTE_ENABLE_OPTIONAL_XSTATE_FEATURES
- controls extended thread context features.Check the corresponding pages for more details.
To avoid retaining unused resources, call NtClose
to close the returned handle when it is no longer required.
For the legacy equivalent of this function, see NtCreateThread
.