Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for signal_ignored (0.78 sec)

  1. src/runtime/signal_unix.go

    // implement profiling at a rate of hz.
    // No changes required on Unix systems when using setitimer.
    func setThreadCPUProfilerHz(hz int32) {
    	getg().m.profilehz = hz
    }
    
    func sigpipe() {
    	if signal_ignored(_SIGPIPE) || sigsend(_SIGPIPE) {
    		return
    	}
    	dieFromSignal(_SIGPIPE)
    }
    
    // doSigPreempt handles a preemption signal on gp.
    func doSigPreempt(gp *g, ctxt *sigctxt) {
    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