Skip to content

Commit e403736

Browse files
committed
TMP: Only ignore SIG_IGN
1 parent 02296bc commit e403736

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/runtime/signal_unix.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,10 @@ func sigenable(sig uint32) {
202202
enableSigChan <- sig
203203
<-maskUpdatedChan
204204
if atomic.Cas(&handlingSig[sig], 0, 1) {
205-
// atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
205+
h := getsig(sig)
206+
if h != _SIG_IGN {
207+
atomic.Storeuintptr(&fwdSig[sig], h)
208+
}
206209
setsig(sig, abi.FuncPCABIInternal(sighandler))
207210
}
208211
}
@@ -232,7 +235,10 @@ func sigdisable(sig uint32) bool {
232235
// we should remove the one we installed.
233236
if sigInstallGoHandler(sig) {
234237
if atomic.Cas(&handlingSig[sig], 0, 1) {
235-
// atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
238+
h := getsig(sig)
239+
if h != _SIG_IGN {
240+
atomic.Storeuintptr(&fwdSig[sig], h)
241+
}
236242
setsig(sig, abi.FuncPCABIInternal(sighandler))
237243
}
238244
return false

0 commit comments

Comments
 (0)