mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 01:18:29 +01:00
3786ac96a5
* makefile wip * feat: adds Makefile Adds a `Makefile` for managing build-related tasks. * chore: updates dependencies * chore: updates dependencies * chore: updates bin scripts - Removes `build_release.sh` - Places deprecation notice in `build_devel.sh`, as its purpose has been superceded by the `Makefile`. * chore: updates bin scripts - Removes `build_release.sh` - Places deprecation notice in `build_devel.sh`, as its purpose has been superceded by the `Makefile`. * fix: Makefile Makes several corrections and improvements to the `Makefile`: - Previously, the `ifeq` rules were not behaving as intended, due to false assumptions regarding how `make` fundamentally behaves. Malfunctioning imperative-style programming has been replaced with declarative rules to repair this issue. - Previously, all release executables were zipped after compilation. In order to spare non-Windows users from (possibly) needing to install a package to unzip the executables, all non-Windows binaries are now compressed with `gzip`. (Windows executables are still compressed with `zip`.) - Removes a bit of needlessly verbosity in several rules and paths. * chore: updates dependencies * chore: bumps version to 3.3.1
36 lines
1 KiB
Go
36 lines
1 KiB
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build dragonfly freebsd linux netbsd openbsd
|
|
|
|
package unix
|
|
|
|
import "unsafe"
|
|
|
|
// fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux
|
|
// systems by fcntl_linux_32bit.go to be SYS_FCNTL64.
|
|
var fcntl64Syscall uintptr = SYS_FCNTL
|
|
|
|
func fcntl(fd int, cmd, arg int) (int, error) {
|
|
valptr, _, errno := Syscall(fcntl64Syscall, uintptr(fd), uintptr(cmd), uintptr(arg))
|
|
var err error
|
|
if errno != 0 {
|
|
err = errno
|
|
}
|
|
return int(valptr), err
|
|
}
|
|
|
|
// FcntlInt performs a fcntl syscall on fd with the provided command and argument.
|
|
func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
|
|
return fcntl(int(fd), cmd, arg)
|
|
}
|
|
|
|
// FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
|
|
func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
|
|
_, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
|
|
if errno == 0 {
|
|
return nil
|
|
}
|
|
return errno
|
|
}
|