summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Lu2017-05-15 22:41:55 -0700
committerdevnoname1202017-05-16 07:41:55 +0200
commit0e9ee8b43133af406ec1467dff912b4ac8637e55 (patch)
tree1623197acc497adbca187e979fcd98a47a06e602
parentAdded dmac functions (#173) (diff)
downloadvds-libraries-0e9ee8b43133af406ec1467dff912b4ac8637e55.tar.gz
Added sceKernelPowerLock sceKernelPowerUnlock (#176)
Diffstat (limited to '')
-rw-r--r--include/user/kernel/processmgr.h18
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.