mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
e4cbce12c4
* Update `github.com/ethereum/go-ethereum` package to 1.8.1 branch. Part of #638 * Fix code due to some signature changes. Part of #638 * use upstream for whisper backend * Add patch to downgrade usage of Whisper v6 to v5 in some geth 1.8.1 vendor files. Part of #638 * Take into account the DNS rebinding protection introduced in 1.8.0 by adding exception for localhost. Part of #638 * Add patches required for cross-compiled builds starting with geth 1.8.0. Only applied during build. Part of #638 * Update expected JSON result in `TestRegressionGetTransactionReceipt()` and `TestCallRawResultGetTransactionReceipt()`. Part of #665 * Fix some failing e2e tests. Part of #638 * Address comments in PR #702. Part of #638
72 lines
1.3 KiB
Go
72 lines
1.3 KiB
Go
// +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 (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}
|
|
}
|