Epok Engine

PSYQO SDK

psyqo::Kernel::Internal::abort

Function · 2 overloads

Function

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

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

Declaration 1 of 2

Declaration
void abort()

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

This overload takes no parameters.

Returns: Nothing (void).

Example

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

psyqo::Kernel::Internal::abort();

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

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

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

Declaration 2 of 2

Declaration
void abort(const char* msg, std::source_location location = std::source_location::current())

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

ParameterTypeMeaning
msgconst char *Value supplied for msg. Keep referenced or pointed-to data valid for the complete call.
locationstd::source_locationValue supplied for location. 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:
// const char * msg
// std::source_location location

psyqo::Kernel::Internal::abort(msg, location);

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:81

Related members