Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for goroutineProfileWithLabelsConcurrent (0.22 sec)

  1. src/runtime/mprof.go

    func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
    	if labels != nil && len(labels) != len(p) {
    		labels = nil
    	}
    
    	return goroutineProfileWithLabelsConcurrent(p, labels)
    }
    
    var goroutineProfile = struct {
    	sema    uint32
    	active  bool
    	offset  atomic.Int64
    	records []profilerecord.StackRecord
    	labels  []unsafe.Pointer
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top