var runtime.fwdSig

12 uses

	runtime (current package)
		signal_unix.go#L80: var fwdSig [_NSIG]uintptr
		signal_unix.go#L131: 		fwdSig[i] = getsig(i)
		signal_unix.go#L136: 			if fwdSig[i] != _SIG_DFL && fwdSig[i] != _SIG_IGN {
		signal_unix.go#L138: 			} else if fwdSig[i] == _SIG_IGN {
		signal_unix.go#L157: 		if atomic.Loaduintptr(&fwdSig[sig]) == _SIG_IGN {
		signal_unix.go#L195: 			atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
		signal_unix.go#L225: 			setsig(sig, atomic.Loaduintptr(&fwdSig[sig]))
		signal_unix.go#L272: 			atomic.Storeuintptr(&fwdSig[_SIGPROF], getsig(_SIGPROF))
		signal_unix.go#L298: 				h := atomic.Loaduintptr(&fwdSig[_SIGPROF])
		signal_unix.go#L804: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L969: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])