mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
55b18b4897
commit 95479c8ad744db48386a5c78e54ef8da80e9120b Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:26:32 2021 -0400 chore(version): bump version to 4.2.1 commit6956f51cae
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:24:21 2021 -0400 fix(Makefile): `vendor-update` Update the `vendor-update` build target to run `go mod vendor` after updating dependencies. commit0aca411279
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:23:24 2021 -0400 chore(deps): update dependencies commite847956b02
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 08:26:51 2021 -0400 chore(deps): build updates - Upgrade `go` to `1.16.3` - Attempt to fix build errors regarding dependencies
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
// Copyright 2020 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.
|
|
|
|
//go:build zos && s390x
|
|
// +build zos,s390x
|
|
|
|
package unix
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
// ioctl itself should not be exposed directly, but additional get/set
|
|
// functions for specific types are permissible.
|
|
|
|
// IoctlSetInt performs an ioctl operation which sets an integer value
|
|
// on fd, using the specified request number.
|
|
func IoctlSetInt(fd int, req uint, value int) error {
|
|
return ioctl(fd, req, uintptr(value))
|
|
}
|
|
|
|
// IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
|
|
//
|
|
// To change fd's window size, the req argument should be TIOCSWINSZ.
|
|
func IoctlSetWinsize(fd int, req uint, value *Winsize) error {
|
|
// TODO: if we get the chance, remove the req parameter and
|
|
// hardcode TIOCSWINSZ.
|
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(value)))
|
|
runtime.KeepAlive(value)
|
|
return err
|
|
}
|
|
|
|
// IoctlSetTermios performs an ioctl on fd with a *Termios.
|
|
//
|
|
// The req value is expected to be TCSETS, TCSETSW, or TCSETSF
|
|
func IoctlSetTermios(fd int, req uint, value *Termios) error {
|
|
if (req != TCSETS) && (req != TCSETSW) && (req != TCSETSF) {
|
|
return ENOSYS
|
|
}
|
|
err := Tcsetattr(fd, int(req), value)
|
|
runtime.KeepAlive(value)
|
|
return err
|
|
}
|
|
|
|
// IoctlGetInt performs an ioctl operation which gets an integer value
|
|
// from fd, using the specified request number.
|
|
//
|
|
// A few ioctl requests use the return value as an output parameter;
|
|
// for those, IoctlRetInt should be used instead of this function.
|
|
func IoctlGetInt(fd int, req uint) (int, error) {
|
|
var value int
|
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
return value, err
|
|
}
|
|
|
|
func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
|
|
var value Winsize
|
|
err := ioctl(fd, req, uintptr(unsafe.Pointer(&value)))
|
|
return &value, err
|
|
}
|
|
|
|
// IoctlGetTermios performs an ioctl on fd with a *Termios.
|
|
//
|
|
// The req value is expected to be TCGETS
|
|
func IoctlGetTermios(fd int, req uint) (*Termios, error) {
|
|
var value Termios
|
|
if req != TCGETS {
|
|
return &value, ENOSYS
|
|
}
|
|
err := Tcgetattr(fd, &value)
|
|
return &value, err
|
|
}
|