PSPSDK 2024-10-31
|
This module contains routines to manage interrupts. More...
Functions | |
int | sceKernelRegisterIntrHandler (int intno, int no, void *handler, void *arg1, void *arg2) |
Register an interrupt handler. | |
int | sceKernelReleaseIntrHandler (int intno) |
Release an interrupt handler. | |
int | sceKernelEnableIntr (int intno) |
Enable an interrupt. | |
int | sceKernelDisableIntr (int intno) |
Disable an interrupt. | |
int | sceKernelIsIntrContext (void) |
Check if we are in an interrupt context or not. | |
This module contains routines to manage interrupts.
Disable an interrupt.
intno | - Interrupt to disable. |
Enable an interrupt.
intno | - Interrupt to enable. |
Check if we are in an interrupt context or not.
Register an interrupt handler.
intno | - The interrupt number to register. |
no | - The queue number. |
handler | - Pointer to the handler. |
arg1 | - Unknown (probably a set of flags) |
arg2 | - Unknown (probably a common pointer) |