ThreadBasicInformation
ThreadBasicInformation is a structure used in Windows operating systems to retrieve basic information about a thread. It is typically populated by the NtQueryInformationThread function when a specific information class, ThreadBasicInformation, is requested. This structure is part of the Native NT API, which provides a lower-level interface to the operating system than the Win32 API.
The ThreadBasicInformation structure contains several key members. The Tcb field provides a pointer to the thread's
Accessing ThreadBasicInformation directly through NtQueryInformationThread is generally reserved for advanced development scenarios, such as kernel-mode drivers