PsGetThreadCreateTime - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

LONGLONG PsGetThreadCreateTime(
  [in] PETHREAD Thread
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-psgetthreadcreatetime)

Description

This routine retrieves the creation time of a given thread.

Parameters

Thread [in]

A pointer to an executive thread object structure (ETHREAD) for which to get the creation time.

Return value

Returns a long long integer that represents the thread's creation time in 100-nanosecond intervals since January 1, 1601. This is a standard timestamp format used in Windows known as FILETIME.

Remarks

A driver might call PsGetThreadCreateTime for several reasons:

See also