diff options
author | Rinnegatamante | 2017-11-28 18:49:27 +0100 |
---|---|---|
committer | devnoname120 | 2017-11-28 18:49:27 +0100 |
commit | b929300459d1ee111f248123736773dfbbc384b9 (patch) | |
tree | 64c51088015fd09942826eff7def6eb2c178a470 /include | |
parent | Remove misleading note (docs) (diff) | |
download | vds-libraries-b929300459d1ee111f248123736773dfbbc384b9.tar.gz |
Doc indentation changes (#253)
Diffstat (limited to 'include')
-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 |