Epok Engine

PSYQO SDK

psyqo::Kernel::Internal::crashHandler

Function · 1 overload

Function

Performs `crash handler` as part of PSX kernel ownership, interrupts and low-level services.

Belongs to
psyqo::Kernel::Internal
Header
kernel.hh
Overloads
1

Declaration

Declaration
void crashHandler(uint32_t exceptionCode, uint32_t* kernelRegisters)

Performs `crash handler` as part of PSX kernel ownership, interrupts and low-level services.

ParameterTypeMeaning
exceptionCodeuint32_tValue supplied for exceptionCode. Keep referenced or pointed-to data valid for the complete call.
kernelRegistersuint32_t *Value supplied for kernelRegisters. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "psyqo/kernel.hh"

// Assume these named values have been initialized with valid data:
// uint32_t exceptionCode
// uint32_t * kernelRegisters

psyqo::Kernel::Internal::crashHandler(exceptionCode, kernelRegisters);

Why use it

It provides direct, allocation-conscious access to PSX kernel ownership, interrupts and low-level services. No exception-based error path is implied by the signature.

Trade-offs and warnings

Pointer/reference arguments are borrowed unless the source contract says otherwise; keep them valid for the complete operation and never assume null is accepted.

Declared in https://github.com/pcsx-redux/nugget/blob/6186b131aacc5853a9161fb076ed34ffe504552d/psyqo/kernel.hh:351

Related members