vitasdk
Documentation of the vitasdk
|
Go to the source code of this file.
Data Structures | |
struct | SceKernelMppInfo |
Message Pipe status info. More... | |
Functions | |
SceUID | sceKernelCreateMsgPipe (const char *name, int type, int attr, unsigned int bufSize, void *opt) |
Create a message pipe. More... | |
int | sceKernelDeleteMsgPipe (SceUID uid) |
Delete a message pipe. More... | |
int | sceKernelSendMsgPipe (SceUID uid, void *message, unsigned int size, int unk1, void *unk2, unsigned int *timeout) |
Send a message to a pipe. More... | |
int | sceKernelSendMsgPipeCB (SceUID uid, void *message, unsigned int size, int unk1, void *unk2, unsigned int *timeout) |
Send a message to a pipe (with callback) More... | |
int | sceKernelTrySendMsgPipe (SceUID uid, void *message, SceSize size, int unk1, void *unk2) |
Try to send a message to a pipe. More... | |
int | sceKernelReceiveMsgPipe (SceUID uid, void *message, SceSize size, int unk1, void *unk2, unsigned int *timeout) |
Receive a message from a pipe. More... | |
int | sceKernelReceiveMsgPipeCB (SceUID uid, void *message, SceSize size, int unk1, void *unk2, unsigned int *timeout) |
Receive a message from a pipe (with callback) More... | |
int | sceKernelTryReceiveMsgPipe (SceUID uid, void *message, SceSize size, int unk1, void *unk2) |
Receive a message from a pipe. More... | |
int | sceKernelCancelMsgPipe (SceUID uid, int *psend, int *precv) |
Cancel a message pipe. More... | |
VITASDK_BUILD_ASSERT_EQ (0x3C, SceKernelMppInfo) | |
int | sceKernelGetMsgPipeInfo (SceUID uid, SceKernelMppInfo *info) |
Get the status of a Message Pipe. More... | |