diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-17 15:48:40 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-17 15:48:40 +0900 |
| commit | b852402f67b22a3a850ce4eb1305a3ce5898d128 (patch) | |
| tree | 76ca77ab869198d5327e9557d8db897c0d6ec356 /internal/outcome/shim.go | |
| parent | 6d015a949e27f20c86409c7d78053f0b0493f165 (diff) | |
ext: move syscall wrappers from container
These are generally useful, and none of them are container-specific. Syscalls subtle to use and requiring container-specific setup remains in container.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/outcome/shim.go')
| -rw-r--r-- | internal/outcome/shim.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/outcome/shim.go b/internal/outcome/shim.go index 3f5a86dc..43be1282 100644 --- a/internal/outcome/shim.go +++ b/internal/outcome/shim.go @@ -159,7 +159,7 @@ func shimEntrypoint(k syscallDispatcher) { logger.SetFlags(0) } - if err := k.setDumpable(container.SUID_DUMP_DISABLE); err != nil { + if err := k.setDumpable(ext.SUID_DUMP_DISABLE); err != nil { k.fatalf("cannot set SUID_DUMP_DISABLE: %v", err) } |
