summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/BUILD
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2018-09-04 09:18:00 -0700
committerShentubot <shentubot@google.com>2018-09-04 09:19:11 -0700
commitc09f9acd7c7a2e85472b1ee47bf26f7c89ded43e (patch)
tree27965206558459ba7505053cbfe9fd3d0e7167fb /pkg/sentry/kernel/BUILD
parent66c03b3dd79c45014da19f36973a85290e9a4458 (diff)
Distinguish Element and Linker for ilist.
Furthermore, allow for the specification of an ElementMapper. This allows a single "Element" type to exist on multiple inline lists, and work without having to embed the entry type. This is a requisite change for supporting a per-Inode list of Dirents. PiperOrigin-RevId: 211467497 Change-Id: If2768999b43e03fdaecf8ed15f435fe37518d163
Diffstat (limited to 'pkg/sentry/kernel/BUILD')
-rw-r--r--pkg/sentry/kernel/BUILD4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/sentry/kernel/BUILD b/pkg/sentry/kernel/BUILD
index 0bc735550..7eb2bffeb 100644
--- a/pkg/sentry/kernel/BUILD
+++ b/pkg/sentry/kernel/BUILD
@@ -10,6 +10,7 @@ go_template_instance(
prefix = "pendingSignal",
template = "//pkg/ilist:generic_list",
types = {
+ "Element": "*pendingSignal",
"Linker": "*pendingSignal",
},
)
@@ -21,6 +22,7 @@ go_template_instance(
prefix = "processGroup",
template = "//pkg/ilist:generic_list",
types = {
+ "Element": "*ProcessGroup",
"Linker": "*ProcessGroup",
},
)
@@ -43,6 +45,7 @@ go_template_instance(
prefix = "session",
template = "//pkg/ilist:generic_list",
types = {
+ "Element": "*Session",
"Linker": "*Session",
},
)
@@ -54,6 +57,7 @@ go_template_instance(
prefix = "task",
template = "//pkg/ilist:generic_list",
types = {
+ "Element": "*Task",
"Linker": "*Task",
},
)