github.com/artpar/rclone@v1.67.3/backend/local/read_device_other.go (about)

     1  // Device reading functions
     2  
     3  //go: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  }