File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,10 @@ func sigenable(sig uint32) {
202
202
enableSigChan <- sig
203
203
<- maskUpdatedChan
204
204
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
+ }
206
209
setsig (sig , abi .FuncPCABIInternal (sighandler ))
207
210
}
208
211
}
@@ -232,7 +235,10 @@ func sigdisable(sig uint32) bool {
232
235
// we should remove the one we installed.
233
236
if sigInstallGoHandler (sig ) {
234
237
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
+ }
236
242
setsig (sig , abi .FuncPCABIInternal (sighandler ))
237
243
}
238
244
return false
You can’t perform that action at this time.
0 commit comments