Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for traceGoroutineStackID (0.16 sec)

  1. src/runtime/traceallocfree.go

    func (tl traceLocker) GoroutineStackFree(base uintptr) {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoroutineStackFree, traceGoroutineStackID(base))
    }
    
    // traceGoroutineStackID creates a trace ID for the goroutine stack from its base address.
    func traceGoroutineStackID(base uintptr) traceArg {
    	return traceArg(uint64(base)-trace.minPageHeapAddr) / fixedStack
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top