//go:build !linux && !windows package procstat import ( "errors" "github.com/shirou/gopsutil/v3/process" ) func processName(p *process.Process) (string, error) { return p.Exe() } func queryPidWithWinServiceName(_ string) (uint32, error) { return 0, errors.New("os not supporting win_service option") } func collectMemmap(Process, string, map[string]any) {} func findBySystemdUnits(_ []string) ([]processGroup, error) { return nil, nil } func findByWindowsServices(_ []string) ([]processGroup, error) { return nil, nil } func collectTotalReadWrite(_ Process) (r, w uint64, err error) { return 0, 0, errors.ErrUnsupported }