blob: 373c04dba3908ba14714d8ea5e7eedbd96c59aab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef _PSP2_KERNEL_PROCESSMGR_H_
#define _PSP2_KERNEL_PROCESSMGR_H_
#include_next <kernel/processmgr.h>
SCE_CDECL_BEGIN
/**
* Locks certain timers from triggering.
*
* @param[in] type - One of ::SceKernelPowerTickType
*
* @return 0
*/
int sceKernelPowerLock(SceInt32 type);
/**
* Unlocks certain timers.
*
* @param[in] type - One of ::SceKernelPowerTickType
*
* @return 0
*/
int sceKernelPowerUnlock(SceInt32 type);
SCE_CDECL_END
#endif /* _PSP2_KERNEL_PROCESSMGR_H_ */
|