PSPSDK 2024-10-31
|
This module contains the imports for the kernel's IO routines. More...
Data Structures | |
struct | PspIoDrvArg |
Structure passed to the init and exit functions of the io driver system. More... | |
struct | PspIoDrvFileArg |
Structure passed to the file functions of the io driver system. More... | |
struct | PspIoDrvFuncs |
Structure to maintain the file driver pointers. More... | |
struct | PspIoDrv |
Typedefs | |
typedef struct PspIoDrvArg | PspIoDrvArg |
Structure passed to the init and exit functions of the io driver system. | |
typedef struct PspIoDrvFileArg | PspIoDrvFileArg |
Structure passed to the file functions of the io driver system. | |
typedef struct PspIoDrvFuncs | PspIoDrvFuncs |
Structure to maintain the file driver pointers. | |
typedef struct PspIoDrv | PspIoDrv |
Functions | |
int | sceIoAddDrv (PspIoDrv *drv) |
Adds a new IO driver to the system. | |
int | sceIoDelDrv (const char *drv_name) |
Deletes a IO driver from the system. | |
int | sceIoReopen (const char *file, int flags, SceMode mode, SceUID fd) |
Reopens an existing file descriptor. | |
int | sceIoGetThreadCwd (SceUID uid, char *dir, int len) |
Get the current working directory for a thread. | |
int | sceIoChangeThreadCwd (SceUID uid, char *dir) |
Set the current working directory for a thread. | |
This module contains the imports for the kernel's IO routines.
Structure passed to the init and exit functions of the io driver system.
Structure passed to the file functions of the io driver system.
Structure to maintain the file driver pointers.
Adds a new IO driver to the system.
drv | - Pointer to a filled out driver structure |
Referenced by _gdbSupportLibInit().
Set the current working directory for a thread.
uid | - The UID of the thread |
dir | - The directory to set |
Deletes a IO driver from the system.
drv_name | - Name of the driver to delete. |
Referenced by _gdbSupportLibInit().
Get the current working directory for a thread.
uid | - The UID of the thread |
dir | - A character buffer in which to store the cwd |
len | - The length of the buffer |