8 lines
239 B
Go
8 lines
239 B
Go
//go:build !windows && !linux
|
|
|
|
package game
|
|
|
|
// processes is unsupported on this platform; the process watch list never
|
|
// matches and the nvidia-smi path reports PIDs without names.
|
|
func processes() ([]Process, error) { return nil, nil }
|