Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for debugCallCheck (0.14 sec)

  1. src/runtime/debugcall.go

    	debugCallUnsafePoint = "call not at safe point"
    )
    
    func debugCallV2()
    func debugCallPanicked(val any)
    
    // debugCallCheck checks whether it is safe to inject a debugger
    // function call with return PC pc. If not, it returns a string
    // explaining why.
    //
    //go:nosplit
    func debugCallCheck(pc uintptr) string {
    	// No user calls from the system stack.
    	if getg() != getg().m.curg {
    		return debugCallSystemStack
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top