github.com/rumpl/bof@v23.0.0-rc.2+incompatible/pkg/system/meminfo_unsupported.go (about)

     1  //go:build !linux && !windows
     2  // +build !linux,!windows
     3  
     4  package system // import "github.com/docker/docker/pkg/system"
     5  
     6  // ReadMemInfo is not supported on platforms other than linux and windows.
     7  func ReadMemInfo() (*MemInfo, error) {
     8  	return nil, ErrNotSupportedPlatform
     9  }