aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/outcome/shim.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/internal/outcome/shim.go b/internal/outcome/shim.go
index b07770b4..a16bdc70 100644
--- a/internal/outcome/shim.go
+++ b/internal/outcome/shim.go
@@ -169,14 +169,10 @@ func shimEntrypoint(k syscallDispatcher) {
}
// setup has not completed, terminate immediately
- msg.Resume()
k.exit(hst.ExitRequest)
- return
- case 1: // got SIGCONT after adoption: monitor died before delivering signal
- msg.BeforeExit()
+ case 1: // got SIGCONT via pdeath_signal: monitor died before delivering signal
k.exit(hst.ExitOrphan)
- return
case 2: // unreachable
msg.Verbose("sa_sigaction got invalid siginfo")