#include <pspkerneltypes.h>
Go to the source code of this file.
Functions | |
| int | sceKernelRegisterDefaultExceptionHandler (void *func) |
| Register a default exception handler. | |
| int | sceKernelRegisterExceptionHandler (int exno, void *func) |
| Register a exception handler. | |
| int | sceKernelRegisterPriorityExceptionHandler (int exno, int priority, void *func) |
| Register a exception handler with a priority. | |
| int sceKernelRegisterDefaultExceptionHandler | ( | void * | func | ) |
Register a default exception handler.
| func | - Pointer to the exception handler function |
| int sceKernelRegisterExceptionHandler | ( | int | exno, | |
| void * | func | |||
| ) |
Register a exception handler.
| exno | - The exception number | |
| func | - Pointer to the exception handler function |
| int sceKernelRegisterPriorityExceptionHandler | ( | int | exno, | |
| int | priority, | |||
| void * | func | |||
| ) |
Register a exception handler with a priority.
| exno | - The exception number | |
| priority | - The priority of the exception | |
| func | - Pointer to the exception handler function |
1.5.2