github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/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 }