1// +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
2
3package host
4
5import (
6	"context"
7
8	"github.com/shirou/gopsutil/v3/internal/common"
9)
10
11func HostIDWithContext(ctx context.Context) (string, error) {
12	return "", common.ErrNotImplementedError
13}
14
15func numProcs(ctx context.Context) (uint64, error) {
16	return 0, common.ErrNotImplementedError
17}
18
19func BootTimeWithContext(ctx context.Context) (uint64, error) {
20	return 0, common.ErrNotImplementedError
21}
22
23func UptimeWithContext(ctx context.Context) (uint64, error) {
24	return 0, common.ErrNotImplementedError
25}
26
27func UsersWithContext(ctx context.Context) ([]UserStat, error) {
28	return []UserStat{}, common.ErrNotImplementedError
29}
30
31func VirtualizationWithContext(ctx context.Context) (string, string, error) {
32	return "", "", common.ErrNotImplementedError
33}
34
35func KernelVersionWithContext(ctx context.Context) (string, error) {
36	return "", common.ErrNotImplementedError
37}
38
39func PlatformInformationWithContext(ctx context.Context) (string, string, string, error) {
40	return "", "", "", common.ErrNotImplementedError
41}
42
43func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
44	return []TemperatureStat{}, common.ErrNotImplementedError
45}
46
47func KernelArch() (string, error) {
48	return "", common.ErrNotImplementedError
49}
50