aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/syscall.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-03-25 01:52:49 +0900
committerOphestra <cat@gensokyo.uk>2025-03-25 01:52:49 +0900
commit5c4058d5ac7e7944973ca8216c258fc50c194e22 (patch)
treec06597903233c75eca5a1edae8b06d93f0f81774 /sandbox/syscall.go
parente732dca7629edb503df0c65df5f37a99600d567d (diff)
app: run in native sandbox
Signed-off-by: Ophestra <cat@gensokyo.uk>
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.