THREAD_CREATE_FLAGS_CREATE_SUSPENDED - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
// User processes and threads
#if (PHNT_MODE != PHNT_MODE_KERNEL)
// begin_rev

#define THREAD_CREATE_FLAGS_CREATE_SUSPENDED 0x00000001 // NtCreateUserProcess & NtCreateThreadEx

// end_rev
#endif
#endif

View code on GitHub

This flags indicates that the thread should be created in a suspended state instead of being allowed to execute immediately.

Applicable to

Related flags

See also