blob: 291b9aececa207aff43d626f7c870716a01c3666 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_KERNEL_IOFILEMGR_H
#define _VDSUITE_USER_KERNEL_IOFILEMGR_H
#include_next <kernel/iofilemgr.h>
#ifdef __cplusplus
extern "C" {
#endif
/*--------------------IO Priority--------------------*/
/*Valid priority values range: 1 (highest) - 15 (lowest). Default priority value is 14*/
/**
* Set IO operations priority for file descriptor
*
* @param fd - File UID
* @param priority - IO operations priority
*
* @return < 0 on error.
*/
int sceIoSetPriority(SceUID fd, int priority);
/**
* Get IO operations priority for file descriptor
*
* @param fd - File UID
*
* @return A non-negative integer is a valid priority, anything else an error
*/
int sceIoGetPriority(SceUID fd);
/**
* Set IO operations priority for caller process (will be default for all new IO operations)
*
* @param priority - New default IO operations priority
*
* @return < 0 on error.
*/
int sceIoSetProcessDefaultPriority(int priority);
/**
* Get IO operations priority for process
*
* @return A non-negative integer is a valid priority, anything else an error
*/
int sceIoGetProcessDefaultPriority(void);
/**
* Set IO operations priority for caller thread (will be default for all new IO operations)
*
* @param priority - New default IO operations priority
*
* @return < 0 on error.
*/
int sceIoSetThreadDefaultPriority(int priority);
/**
* Get IO operations priority for thread
*
* @return A non-negative integer is a valid priority, anything else an error
*/
int sceIoGetThreadDefaultPriority(void);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_USER_KERNEL_IOFILEMGR_H */
|