Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for debugCallWrap2 (0.1 sec)

  1. src/runtime/debugcall.go

    // goroutine.
    func debugCallWrap1() {
    	gp := getg()
    	args := (*debugCallWrapArgs)(gp.param)
    	dispatch, callingG := args.dispatch, args.callingG
    	gp.param = nil
    
    	// Dispatch call and trap panics.
    	debugCallWrap2(dispatch)
    
    	// Resume the caller goroutine.
    	getg().schedlink.set(callingG)
    	mcall(func(gp *g) {
    		callingG := gp.schedlink.ptr()
    		gp.schedlink = 0
    
    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