2017-03-15 23:18:39 +00:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
|
2016-08-30 17:48:07 +00:00
|
|
|
|
|
|
|
package host
|
|
|
|
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
|
|
|
|
func Info() (*InfoStat, error) {
|
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func BootTime() (uint64, error) {
|
|
|
|
return 0, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Uptime() (uint64, error) {
|
|
|
|
return 0, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Users() ([]UserStat, error) {
|
|
|
|
return []UserStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
2017-08-16 22:05:24 +00:00
|
|
|
|
|
|
|
func Virtualization() (string, string, error) {
|
|
|
|
return "", "", common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func KernelVersion() (string, error) {
|
|
|
|
return "", common.ErrNotImplementedError
|
|
|
|
}
|