Files
metric/process_metrics_other.go
Zach Kelling d7e43de3af Fix Windows build: correct build tags for platform-specific files
- process_metrics_unix.go: //go:build unix (for Linux, Darwin, BSD)
- process_metrics_windows.go: //go:build windows (unchanged)
- process_metrics_other.go: //go:build !unix && !windows (for plan9, js/wasm)
2026-01-26 17:27:53 -08:00

15 lines
289 B
Go

// Copyright (C) 2020-2026, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
//go:build !unix && !windows
package metric
func processCPUSeconds() (float64, bool) {
return 0, false
}
func processResidentBytes() (float64, bool) {
return 0, false
}