summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.