Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

fcntl_darwin.go 587B

123456789101112131415161718
  1. // Copyright 2019 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. package unix
  5. import "unsafe"
  6. // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
  7. func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
  8. return fcntl(int(fd), cmd, arg)
  9. }
  10. // FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
  11. func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
  12. _, err := fcntl(int(fd), cmd, int(uintptr(unsafe.Pointer(lk))))
  13. return err
  14. }