Files
ITWorx Pulse release export bd774932d5
Public source validation / validate (push) Failing after 3m8s
Publish ITWorx Pulse source
2026-09-03 02:09:19 +02:00

15 lines
346 B
Go

//go:build !linux
package hostcollect
import (
"errors"
"github.com/itworx/pulse/internal/host"
)
// readClockSync has no portable equivalent off Linux; the caller degrades to a warning.
func readClockSync() (host.RawTime, error) {
return host.RawTime{}, errors.New("hostcollect: clock synchronisation probe is only available on linux")
}