Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ticksPerSecond (0.11 sec)

  1. src/runtime/tracetime.go

    // second that elapse.
    func traceClockUnitsPerSecond() uint64 {
    	if osHasLowResClock {
    		// We're using cputicks as our clock, so we need a real estimate.
    		return uint64(ticksPerSecond() / traceTimeDiv)
    	}
    	// Our clock is nanotime, so it's just the constant time division.
    	// (trace clock units / nanoseconds) * (1e9 nanoseconds / 1 second)
    	return uint64(1.0 / float64(traceTimeDiv) * 1e9)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/cpuprof.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname pprof_cyclesPerSecond runtime/pprof.runtime_cyclesPerSecond
    func pprof_cyclesPerSecond() int64 {
    	return ticksPerSecond()
    }
    
    // readProfile, provided to runtime/pprof, returns the next chunk of
    // binary CPU profiling stack trace data, blocking until data is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top