@@ -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,27 @@ 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
+ // Preserve custom signal handlers installed with cgo.
239
+ if h != _SIG_IGN && h != _SIG_DFL {
240
+ atomic .Storeuintptr (& fwdSig [sig ], h )
241
+ }
242
+ setsig (sig , abi .FuncPCABIInternal (sighandler ))
243
+ }
244
+ return false
245
+ } else {
246
+ // If initsig does not install a signal handler for a
247
+ // signal, then to go back to the state before Notify
248
+ // we should remove the one we installed.
234
249
atomic .Store (& handlingSig [sig ], 0 )
235
- setsig (sig , atomic .Loaduintptr (& fwdSig [sig ]))
250
+ fs := atomic .Loaduintptr (& fwdSig [sig ])
251
+ setsig (sig , fs )
252
+ return fs == _SIG_IGN
236
253
}
237
254
}
255
+ return false
238
256
}
239
257
240
258
// sigignore ignores the signal sig.
0 commit comments