github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/local/read_device_other.go (about)

     1  // Device reading functions
     2  
     3  // +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
     4  
     5  package local
     6  
     7  import "os"
     8  
     9  // readDevice turns a valid os.FileInfo into a device number,
    10  // returning devUnset if it fails.
    11  func readDevice(fi os.FileInfo, oneFileSystem bool) uint64 {
    12  	return devUnset
    13  }