summaryrefslogtreecommitdiff
path: root/libgo/go/internal/syscall/unix/ioctl_aix.go
blob: 1a768048ba8f884c2947a8c6d9f21ee5aa330e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2018 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.

package unix

import (
	"syscall"
	"unsafe"
)

//extern __go_ioctl_ptr
func ioctl(int32, int32, unsafe.Pointer) int32

func Ioctl(fd int, cmd int, args unsafe.Pointer) (err error) {
	if ioctl(int32(fd), int32(cmd), unsafe.Pointer(args)) < 0 {
		return syscall.GetErrno()
	}
	return
}