Epok Engine

PSYQO SDK

psyqo::Kernel::setBreakHandler

Function · 1 overload

Function

Sets a break handler for a given category.

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

Declaration

Declaration
void setBreakHandler(unsigned category, eastl::function<bool(uint32_t)>&& handler)

Sets a break handler for a given category.

ParameterTypeMeaning
categoryunsigned intThe category to handle.
handlereastl::function<bool (uint32_t)> &&Value supplied for handler. 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:
// unsigned int category
// eastl::function<bool (uint32_t)> && handler

psyqo::Kernel::setBreakHandler(category, handler);

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

Related members