diff options
author | devnoname120 | 2018-08-11 17:07:43 +0200 |
---|---|---|
committer | devnoname120 | 2018-08-11 17:07:43 +0200 |
commit | 155ac2f9955e347d70689c5ed0d8666599bec5b1 (patch) | |
tree | af4979930f4dd372074b5b42346332032599764d /include/user/kernel/processmgr.h | |
parent | Add kscePowerSetDisplayBrightness (diff) | |
download | vds-libraries-155ac2f9955e347d70689c5ed0d8666599bec5b1.tar.gz |
Fix incorrect doxygen comments
Diffstat (limited to 'include/user/kernel/processmgr.h')
-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 cbce339..272fe51 100644 --- a/include/user/kernel/processmgr.h +++ b/include/user/kernel/processmgr.h @@ -31,7 +31,7 @@ typedef enum SceKernelPowerTickType { SCE_KERNEL_POWER_TICK_DISABLE_OLED_DIMMING = 6 } SceKernelPowerTickType; -/*** +/** * Exit current Process with specified return code * * @param[in] res - Exit code to return @@ -40,7 +40,7 @@ typedef enum SceKernelPowerTickType { */ int sceKernelExitProcess(int res); -/*** +/** * Cancel specified idle timers to prevent entering in power save processing. * * @param[in] type - One of ::SceKernelPowerTickType @@ -49,7 +49,7 @@ int sceKernelExitProcess(int res); */ int sceKernelPowerTick(SceKernelPowerTickType type); -/*** +/** * Locks certain timers from triggering. * * @param[in] type - One of ::SceKernelPowerTickType @@ -58,7 +58,7 @@ int sceKernelPowerTick(SceKernelPowerTickType type); */ int sceKernelPowerLock(SceKernelPowerTickType type); -/*** +/** * Unlocks certain timers. * * @param[in] type - One of ::SceKernelPowerTickType @@ -67,7 +67,7 @@ int sceKernelPowerLock(SceKernelPowerTickType type); */ int sceKernelPowerUnlock(SceKernelPowerTickType type); -/*** +/** * Get the process time of the current process. * * @param[out] type - Pointer to a ::SceKernelSysClock structure which will receive the process time. @@ -76,21 +76,21 @@ int sceKernelPowerUnlock(SceKernelPowerTickType type); */ 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 |