Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sigpc (0.6 sec)

  1. 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)
  2. 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