Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for augmentName (0.12 sec)

  1. src/cmd/trace/gstate.go

    		executing:    R(noResource),
    		activeRanges: make(map[string]activeRange),
    	}
    }
    
    // augmentName attempts to use stk to augment the name of the goroutine
    // with stack information. This stack must be related to the goroutine
    // in some way, but it doesn't really matter which stack.
    func (gs *gState[R]) augmentName(stk trace.Stack) {
    	if gs.named {
    		return
    	}
    	if stk == trace.NoStack {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top