Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for signal_disable (0.29 sec)

  1. src/runtime/signal_unix.go

    		}
    	}
    }
    
    // sigdisable disables the Go signal handler for the signal sig.
    // It is only called while holding the os/signal.handlers lock,
    // via os/signal.disableSignal and signal_disable.
    func sigdisable(sig uint32) {
    	if sig >= uint32(len(sigtable)) {
    		return
    	}
    
    	// SIGPROF is handled specially for profiling.
    	if sig == _SIGPROF {
    		return
    	}
    
    	t := &sigtable[sig]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top