blob: 8aca341b99ec5ca45dceac62690820bdab72b5d9 (
plain)
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
|
VERS_1.0 {
global:
xenforeignmemory_open;
xenforeignmemory_close;
xenforeignmemory_map;
xenforeignmemory_unmap;
local: *; /* Do not expose anything by default */
};
VERS_1.1 {
global:
xenforeignmemory_restrict;
} VERS_1.0;
VERS_1.2 {
global:
xenforeignmemory_map2;
} VERS_1.1;
VERS_1.3 {
global:
xenforeignmemory_map_resource;
xenforeignmemory_unmap_resource;
} VERS_1.2;
VERS_1.4 {
global:
xenforeignmemory_resource_size;
} VERS_1.3;
|