fcntl.go 936 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2014 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build darwin dragonfly freebsd linux netbsd openbsd
  5. package unix
  6. import "unsafe"
  7. // fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux
  8. // systems by flock_linux_32bit.go to be SYS_FCNTL64.
  9. var fcntl64Syscall uintptr = SYS_FCNTL
  10. // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
  11. func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
  12. valptr, _, err := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(arg))
  13. return int(valptr), err
  14. }
  15. // FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
  16. func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
  17. _, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
  18. if errno == 0 {
  19. return nil
  20. }
  21. return errno
  22. }