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
|
package(licenses = ["notice"])
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
load("//tools/go_generics:defs.bzl", "go_template_instance")
go_library(
name = "ashmem",
srcs = [
"area.go",
"device.go",
"pin_board.go",
"uint64_range.go",
"uint64_set.go",
],
importpath = "gvisor.dev/gvisor/pkg/sentry/fs/ashmem",
visibility = ["//pkg/sentry:internal"],
deps = [
"//pkg/abi/linux",
"//pkg/sentry/arch",
"//pkg/sentry/context",
"//pkg/sentry/fs",
"//pkg/sentry/fs/fsutil",
"//pkg/sentry/fs/tmpfs",
"//pkg/sentry/kernel/time",
"//pkg/sentry/memmap",
"//pkg/sentry/usage",
"//pkg/sentry/usermem",
"//pkg/syserror",
"//pkg/waiter",
],
)
go_test(
name = "ashmem_test",
size = "small",
srcs = ["pin_board_test.go"],
embed = [":ashmem"],
deps = [
"//pkg/abi/linux",
"//pkg/sentry/usermem",
],
)
go_template_instance(
name = "uint64_range",
out = "uint64_range.go",
package = "ashmem",
template = "//pkg/segment:generic_range",
types = {
"T": "uint64",
},
)
go_template_instance(
name = "uint64_set",
out = "uint64_set.go",
package = "ashmem",
template = "//pkg/segment:generic_set",
types = {
"Key": "uint64",
"Range": "Range",
"Value": "noValue",
"Functions": "setFunctions",
},
)
|