github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/integration/runner/tmpfs_mounter_notlinux.go (about)

     1  // +build !linux
     2  
     3  package runner
     4  
     5  func MustMountTmpfs(destination string) {
     6  	panic("not supported")
     7  }
     8  
     9  func MustUnmountTmpfs(destination string) {
    10  	panic("not supported")
    11  }
    12  
    13  func Unmount(destination string) {
    14  	panic("not supported")
    15  }