summaryrefslogtreecommitdiff
path: root/include/user/kernel/processmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/user/kernel/processmgr.h')
-rw-r--r--include/user/kernel/processmgr.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/include/user/kernel/processmgr.h b/include/user/kernel/processmgr.h
index cbce339..e515f60 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,27 +76,20 @@ 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
- */
-SceUID sceKernelGetProcessId(void);
-
#ifdef __cplusplus
}
#endif