diff options
-rw-r--r-- | include/user/kernel/processmgr.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/user/kernel/processmgr.h b/include/user/kernel/processmgr.h index 21f47a1..cbce339 100644 --- a/include/user/kernel/processmgr.h +++ b/include/user/kernel/processmgr.h @@ -37,7 +37,7 @@ typedef enum SceKernelPowerTickType { * @param[in] res - Exit code to return * * @return 0 on success, < 0 on error. -*/ + */ int sceKernelExitProcess(int res); /*** @@ -46,7 +46,7 @@ int sceKernelExitProcess(int res); * @param[in] type - One of ::SceKernelPowerTickType * * @return 0 -*/ + */ int sceKernelPowerTick(SceKernelPowerTickType type); /*** @@ -55,7 +55,7 @@ int sceKernelPowerTick(SceKernelPowerTickType type); * @param[in] type - One of ::SceKernelPowerTickType * * @return 0 -*/ + */ int sceKernelPowerLock(SceKernelPowerTickType type); /*** @@ -64,7 +64,7 @@ int sceKernelPowerLock(SceKernelPowerTickType type); * @param[in] type - One of ::SceKernelPowerTickType * * @return 0 -*/ + */ int sceKernelPowerUnlock(SceKernelPowerTickType type); /*** @@ -73,28 +73,28 @@ int sceKernelPowerUnlock(SceKernelPowerTickType type); * @param[out] type - Pointer to a ::SceKernelSysClock structure which will receive the process time. * * @return 0 on success, < 0 on error. -*/ + */ int sceKernelGetProcessTime(SceKernelSysClock *pSysClock); /*** * Get the lower 32 bits part of process time of the current process. * * @return process time of the current process -*/ + */ SceUInt32 sceKernelGetProcessTimeLow(void); /*** * Get the process time of the current process. * * @return process time of the current process -*/ + */ SceUInt64 sceKernelGetProcessTimeWide(void); /*** * Get the process ID of the current process. * * @return process ID of the current process -*/ + */ SceUID sceKernelGetProcessId(void); #ifdef __cplusplus |