diff options
author | Yifan Lu | 2017-05-15 22:41:55 -0700 |
---|---|---|
committer | devnoname120 | 2017-05-16 07:41:55 +0200 |
commit | 0e9ee8b43133af406ec1467dff912b4ac8637e55 (patch) | |
tree | 1623197acc497adbca187e979fcd98a47a06e602 /include/user/kernel/processmgr.h | |
parent | Added dmac functions (#173) (diff) | |
download | vds-libraries-0e9ee8b43133af406ec1467dff912b4ac8637e55.tar.gz |
Added sceKernelPowerLock sceKernelPowerUnlock (#176)
Diffstat (limited to '')
-rw-r--r-- | include/user/kernel/processmgr.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/user/kernel/processmgr.h b/include/user/kernel/processmgr.h index c256157..2784d12 100644 --- a/include/user/kernel/processmgr.h +++ b/include/user/kernel/processmgr.h @@ -51,6 +51,24 @@ int sceKernelExitProcess(int res); int sceKernelPowerTick(int type); /*** + * Locks certain timers from triggering. + * + * @param[in] type - One of ::KernelPowerTickType + * + * @return 0 +*/ +int sceKernelPowerLock(int type); + +/*** + * Unlocks certain timers. + * + * @param[in] type - One of ::KernelPowerTickType + * + * @return 0 +*/ +int sceKernelPowerUnlock(int type); + +/*** * Get the process time of the current process. * * @param[out] type - Pointer to a ::SceKernelSysClock structure which will receive the process time. |