summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/lock/BUILD
blob: 3159ff1da58d21de4b6addd4746ae8249e8951eb (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
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
package(licenses = ["notice"])  # Apache 2.0

load("//tools/go_generics:defs.bzl", "go_template_instance")
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")

go_template_instance(
    name = "lock_range",
    out = "lock_range.go",
    package = "lock",
    prefix = "Lock",
    template = "//pkg/segment:generic_range",
    types = {
        "T": "uint64",
    },
)

go_template_instance(
    name = "lock_set",
    out = "lock_set.go",
    consts = {
        "minDegree": "3",
    },
    package = "lock",
    prefix = "Lock",
    template = "//pkg/segment:generic_set",
    types = {
        "Key": "uint64",
        "Range": "LockRange",
        "Value": "Lock",
        "Functions": "lockSetFunctions",
    },
)

go_library(
    name = "lock",
    srcs = [
        "lock.go",
        "lock_range.go",
        "lock_set.go",
        "lock_set_functions.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/fs/lock",
    visibility = ["//pkg/sentry:internal"],
    deps = [
        "//pkg/log",
        "//pkg/waiter",
    ],
)

go_test(
    name = "lock_test",
    size = "small",
    srcs = [
        "lock_range_test.go",
        "lock_test.go",
    ],
    embed = [":lock"],
)