aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/syscall.go
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/syscall.go')
-rw-r--r--sandbox/syscall.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/sandbox/syscall.go b/sandbox/syscall.go
index dd1679f0..d477dbc0 100644
--- a/sandbox/syscall.go
+++ b/sandbox/syscall.go
@@ -22,14 +22,6 @@ func SetDumpable(dumpable uintptr) error {
return nil
}
-func SetPdeathsig(sig syscall.Signal) error {
- if _, _, errno := syscall.RawSyscall(syscall.SYS_PRCTL, syscall.PR_SET_PDEATHSIG, uintptr(sig), 0); errno != 0 {
- return errno
- }
-
- return nil
-}
-
// IgnoringEINTR makes a function call and repeats it if it returns an
// EINTR error. This appears to be required even though we install all
// signal handlers with SA_RESTART: see #22838, #38033, #38836, #40846.