mirror of
https://github.com/rclone/rclone.git
synced 2024-12-04 06:34:11 +08:00
16 lines
303 B
Go
16 lines
303 B
Go
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!plan9,!solaris
|
|
|
|
package daemon
|
|
|
|
func lockFile(fd uintptr) error {
|
|
return errNotSupported
|
|
}
|
|
|
|
func unlockFile(fd uintptr) error {
|
|
return errNotSupported
|
|
}
|
|
|
|
func getFdName(fd uintptr) (name string, err error) {
|
|
return "", errNotSupported
|
|
}
|