@@ -202,23 +202,28 @@ 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
}
209
212
}
210
213
211
- // sigdisable disables the Go signal handler for the signal sig.
214
+ // sigdisable resets the signal handler for the signal sig back to the default
215
+ // at program startup or the last custom handler registered by cgo.
212
216
// It is only called while holding the os/signal.handlers lock,
213
217
// via os/signal.disableSignal and signal_disable.
214
- func sigdisable (sig uint32 ) {
218
+ // Returns true if the signal is ignored after the change.
219
+ func sigdisable (sig uint32 ) bool {
215
220
if sig >= uint32 (len (sigtable )) {
216
- return
221
+ return false
217
222
}
218
223
219
224
// SIGPROF is handled specially for profiling.
220
225
if sig == _SIGPROF {
221
- return
226
+ return false
222
227
}
223
228
224
229
t := & sigtable [sig ]
@@ -227,14 +232,28 @@ func sigdisable(sig uint32) {
227
232
disableSigChan <- sig
228
233
<- maskUpdatedChan
229
234
230
- // If initsig does not install a signal handler for a
231
- // signal, then to go back to the state before Notify
232
- // we should remove the one we installed.
233
- if ! sigInstallGoHandler (sig ) {
235
+ if sigInstallGoHandler (sig ) {
236
+ if atomic .Cas (& handlingSig [sig ], 0 , 1 ) {
237
+ h := getsig (sig )
238
+ // Do not overwrite the initial signal handler with _SIG_IGN so
239
+ // that signals can still be reset after having been ignored.
240
+ if h != _SIG_IGN {
241
+ atomic .Storeuintptr (& fwdSig [sig ], h )
242
+ }
243
+ setsig (sig , abi .FuncPCABIInternal (sighandler ))
244
+ }
245
+ return false
246
+ } else {
247
+ // If initsig does not install a signal handler for a
248
+ // signal, then to go back to the state before Notify
249
+ // we should remove the one we installed.
234
250
atomic .Store (& handlingSig [sig ], 0 )
235
- setsig (sig , atomic .Loaduintptr (& fwdSig [sig ]))
251
+ fs := atomic .Loaduintptr (& fwdSig [sig ])
252
+ setsig (sig , fs )
253
+ return fs == _SIG_IGN
236
254
}
237
255
}
256
+ return false
238
257
}
239
258
240
259
// sigignore ignores the signal sig.
0 commit comments