Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for preparePanic (0.25 sec)

  1. src/runtime/signal_unix.go

    		// augmenting the stack frame would break
    		// the unwinding code.
    		gp.sig = sig
    		gp.sigcode0 = uintptr(c.sigcode())
    		gp.sigcode1 = c.fault()
    		gp.sigpc = c.sigpc()
    
    		c.preparePanic(sig, gp)
    		return
    	}
    
    	if c.sigFromUser() || flags&_SigNotify != 0 {
    		if sigsend(sig) {
    			return
    		}
    	}
    
    	if c.sigFromUser() && signal_ignored(sig) {
    		return
    	}
    
    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