Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for debugCallWrap1 (0.11 sec)

  1. src/runtime/debugcall.go

    	unlockOSThread()
    
    	gp.asyncSafePoint = false
    }
    
    type debugCallWrapArgs struct {
    	dispatch uintptr
    	callingG *g
    }
    
    // debugCallWrap1 is the continuation of debugCallWrap on the callee
    // goroutine.
    func debugCallWrap1() {
    	gp := getg()
    	args := (*debugCallWrapArgs)(gp.param)
    	dispatch, callingG := args.dispatch, args.callingG
    	gp.param = nil
    
    	// Dispatch call and trap panics.
    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