1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-19 01:33:25 +00:00

added dependency github.com/sevlyar/go-daemon

This commit is contained in:
ishuah
2018-02-27 22:46:50 +03:00
committed by Ishuah Kariuki
parent fe8eeec5b5
commit 90af7af9a3
39 changed files with 2377 additions and 137 deletions

15
vendor/github.com/sevlyar/go-daemon/lock_file_stub.go generated vendored Normal file
View File

@@ -0,0 +1,15 @@
// +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
}