mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.4 KiB
75 lines
1.4 KiB
// +build !darwin,!freebsd,!linux,!openbsd,!windows
|
|
|
|
package gosigar
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func (c *Cpu) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (l *LoadAverage) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (m *Mem) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (s *Swap) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (s *HugeTLBPages) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (f *FDUsage) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcTime) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (self *FileSystemUsage) Get(path string) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (self *CpuList) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcState) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcExe) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcMem) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcFDUsage) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcEnv) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcList) Get() error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (p *ProcArgs) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|
|
func (self *Rusage) Get(int) error {
|
|
return ErrNotImplemented{runtime.GOOS}
|
|
}
|
|
|