summaryrefslogtreecommitdiff
path: root/include/user/kernel/processmgr.h
blob: 8ae753046c75dc06f89dcd8b0e749886df9cd661 (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 _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_ */