Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sigpc (0.03 sec)

  1. src/runtime/signal_unix.go

    		// Have to pass arguments out of band since
    		// 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) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/signal_windows.go

    	// augmenting the stack frame would break
    	// the unwinding code.
    	gp.sig = info.exceptioncode
    	gp.sigcode0 = info.exceptioninformation[0]
    	gp.sigcode1 = info.exceptioninformation[1]
    	gp.sigpc = r.ip()
    
    	// Only push runtime·sigpanic if r.ip() != 0.
    	// If r.ip() == 0, probably panicked because of a
    	// call to a nil func. Not pushing that onto sp will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    		signame := signame(gp.sig)
    		if signame != "" {
    			print("[signal ", signame)
    		} else {
    			print("[signal ", hex(gp.sig))
    		}
    		print(" code=", hex(gp.sigcode0), " addr=", hex(gp.sigcode1), " pc=", hex(gp.sigpc), "]\n")
    	}
    
    	level, all, docrash := gotraceback()
    	if level > 0 {
    		if gp != gp.m.curg {
    			all = true
    		}
    		if gp != gp.m.g0 {
    			print("\n")
    			goroutineheader(gp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	lockedm       muintptr
    	sig           uint32
    	writebuf      []byte
    	sigcode0      uintptr
    	sigcode1      uintptr
    	sigpc         uintptr
    	parentGoid    uint64          // goid of goroutine that created this goroutine
    	gopc          uintptr         // pc of go statement that created this goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top