Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initMetrics (0.13 sec)

  1. src/runtime/metrics.go

    	}
    }
    
    func metricsUnlock() {
    	if raceenabled {
    		racerelease(unsafe.Pointer(&metricsSema))
    	}
    	semrelease(&metricsSema)
    }
    
    // initMetrics initializes the metrics map if it hasn't been yet.
    //
    // metricsSema must be held.
    func initMetrics() {
    	if metricsInit {
    		return
    	}
    
    	sizeClassBuckets = make([]float64, _NumSizeClasses, _NumSizeClasses+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    	stw := stopTheWorld(stwForTestReadMetricsSlow)
    
    	// Initialize the metrics beforehand because this could
    	// allocate and skew the stats.
    	metricsLock()
    	initMetrics()
    
    	systemstack(func() {
    		// Donate the racectx to g0. readMetricsLocked calls into the race detector
    		// via map access.
    		getg().racectx = getg().m.curg.racectx
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top