summaryrefslogtreecommitdiff
path: root/vendor/github.com/sevlyar/go-daemon/lock_file_stub.go
blob: 3be0c01c6f605ca8a01155614c9aa2c42c748be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +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
}