#ifndef _NTPSAPI_H
// Threads
#if (PHNT_MODE != PHNT_MODE_KERNEL)
NTSYSCALLAPI
NTSTATUS
NTAPI
NtTestAlert(
VOID
);
View code on GitHub#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwTestAlert(
VOID
);
View code on GitHubYou can use NtTestAlert to empty APC queue for current thread. If APC queue was empty before call, NtTestAlert has no effect.
NtTestAlert is typical ntcall kernel routine, accessible via int 2Eh. It check thread APC queue, and call KiUserApcDispatcher.
KiUserApcDispatcherNtQueueApcThread