summaryrefslogtreecommitdiffhomepage
path: root/runsc/container/BUILD
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2020-04-27 11:51:48 -0400
committerMichael Pratt <mpratt@google.com>2020-04-27 11:52:43 -0400
commitb15d49a1378e1ccdb821570a111f228532b85ced (patch)
treeed6f4bc4ae7ecf66f8037233c4d61624dcae0056 /runsc/container/BUILD
parent292f3f99b73fb901ffdd3ad8ac682718e1e8960a (diff)
container: use sighandling package
Use the sighandling package for Container.ForwardSignals, for consistency with other signal forwarding. Fixes #2546
Diffstat (limited to 'runsc/container/BUILD')
-rw-r--r--runsc/container/BUILD2
1 files changed, 2 insertions, 0 deletions
diff --git a/runsc/container/BUILD b/runsc/container/BUILD
index 331b8e866..46154df60 100644
--- a/runsc/container/BUILD
+++ b/runsc/container/BUILD
@@ -15,8 +15,10 @@ go_library(
"//test:__subpackages__",
],
deps = [
+ "//pkg/abi/linux",
"//pkg/log",
"//pkg/sentry/control",
+ "//pkg/sentry/sighandling",
"//pkg/sync",
"//runsc/boot",
"//runsc/cgroup",