diff options
Diffstat (limited to 'include/kernel')
-rw-r--r-- | include/kernel/kernel/processmgr.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/kernel/kernel/processmgr.h b/include/kernel/kernel/processmgr.h index ade4cf4..b5626a1 100644 --- a/include/kernel/kernel/processmgr.h +++ b/include/kernel/kernel/processmgr.h @@ -32,6 +32,14 @@ int sceKernelGetProcessLocalStorageAddrForPid(SceUID pid, int key, void **out_ad */ int sceKernelProcessResume(SceUID pid); +/** + * @brief Get the status of a given process. + * @param[in] pid The process ID to query. + * @param[out] status The bit field status of the process. + * @return Zero on success, < 0 on error. + */ +int sceKernelGetProcessStatus(SceUID pid, int *status); + #ifdef __cplusplus } #endif |