summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/kernel/kernel/processmgr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/kernel/kernel/processmgr.h b/include/kernel/kernel/processmgr.h
index b067ee7..fcf4ea4 100644
--- a/include/kernel/kernel/processmgr.h
+++ b/include/kernel/kernel/processmgr.h
@@ -8,13 +8,13 @@ extern "C" {
#endif
typedef struct SceKernelProcessInfo {
- SceSize size; // size of this struct, make sure it's 0xE8
- SceUID pid; // our process ID
+ SceSize size; // size of this struct, make sure it's 0xE8
+ SceUID pid; // our process ID
int unk1;
int unk2;
int unk3;
- SceUID ppid; // parent process ID
- // the rest is unknown
+ SceUID ppid; // parent process ID
+ int unk[0xE8 / 4 - 6]; // the rest is unknown
} SceKernelProcessInfo;
void *sceKernelGetProcessKernelBuf(SceUID pid);