Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sa_handler (0.19 sec)

  1. src/runtime/traceback.go

    	}
    
    	// Unwind to next frame.
    	u.calleeFuncID = f.funcID
    	frame.fn = flr
    	frame.pc = frame.lr
    	frame.lr = 0
    	frame.sp = frame.fp
    	frame.fp = 0
    
    	// On link register architectures, sighandler saves the LR on stack
    	// before faking a call.
    	if usesLR && injectedCall {
    		x := *(*uintptr)(unsafe.Pointer(frame.sp))
    		frame.sp += alignUp(sys.MinFrameSize, sys.StackAlign)
    		f = findfunc(frame.pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top