blob: dd8a677f06cc28665e4b69e5c310f07a8f2b10de (
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
30
31
32
33
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_KERNEL_PROCESSMGR_H
#define _VDSUITE_USER_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 /* _VDSUITE_USER_KERNEL_PROCESSMGR_H */
|