Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Return sane fallback CPU percent after first sample on unknown Unix platforms; add xvfb/scrot docs and stub tests; clear PROBLEMS.md open bugs.
8 lines
140 B
Go
8 lines
140 B
Go
//go:build !windows && !linux && !darwin
|
|
|
|
package stats
|
|
|
|
func (r *Reporter) SystemCPUPercent() float64 {
|
|
return r.stubSystemCPUPercent()
|
|
}
|