github.com/noxiouz/docker@v0.7.3-0.20160629055221-3d231c78e8c5/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  }