2OO1, 2 March
NtRaiseException
NtRaiseException
NTSYSAPI
NTSTATUS
NTAPI
NtRaiseException(
IN PEXCEPTION_RECORD ExceptionRecord,
IN PCONTEXT ThreadContext,
IN BOOLEAN HandleException );
Function NtRaiseException is typically used inside
KiUserExceptionDispatcher
function for inform system about exception in current process.
- ExceptionRecord Pointer to
EXCEPTION_RECORD structure containing typical
information about error.
- ThreadContext Pointer to
CONTEXT structure.
- HandleException If not set, calling
process is killed. If set, system tries to execute actually enabled
Exception Handler procedure with parameters specified aa
ExceptionRecord and ThreadContext.
- Documented by:
- Tomasz Nowak
Requirements:
- Library: ntdll.lib
See also:
- KiUserExceptionDispatcher
-
NtGetContextThread
- NtRaiseHardError