github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/pkg/system/meminfo_unsupported.go (about)

     1  // +build !linux,!windows,!solaris
     2  
     3  package system
     4  
     5  // ReadMemInfo is not supported on platforms other than linux and windows.
     6  func ReadMemInfo() (*MemInfo, error) {
     7  	return nil, ErrNotSupportedPlatform
     8  }