NtContinue - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTXCAPI_H

NTSYSCALLAPI
NTSTATUS
NTAPI
NtContinue(
    _In_ PCONTEXT ContextRecord,
    _In_ BOOLEAN TestAlert
    );

#endif

View code on GitHub
#ifndef _NTZWAPI_H

NTSYSCALLAPI
NTSTATUS
NTAPI
ZwContinue(
    _In_ PCONTEXT ContextRecord,
    _In_ BOOLEAN TestAlert
    );

#endif

View code on GitHub

ThreadContext

Pointer to CONTEXT structure for current thread.

RaiseAlert

If set, remove Alerted state from current Thread Object.


You can use NtContinue after processing exception for continue executing thread.
System uses NtContinue also in APC processing.

Documented by

See also