]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / golang.org / x / sys / unix / flock.go
CommitLineData
9b12e4fe
JC
1// +build linux darwin freebsd openbsd netbsd dragonfly
2
3// Copyright 2014 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// +build darwin dragonfly freebsd linux netbsd openbsd
8
9package unix
10
11import "unsafe"
12
13// fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux
14// systems by flock_linux_32bit.go to be SYS_FCNTL64.
15var fcntl64Syscall uintptr = SYS_FCNTL
16
17// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
18func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
19 _, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
20 if errno == 0 {
21 return nil
22 }
23 return errno
24}