1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-25 22:01:14 +02:00
lazygit/vendor/golang.org/x/sys/unix/syscall_illumos.go

80 lines
1.8 KiB
Go
Raw Normal View History

2021-06-05 22:17:49 +10:00
// Copyright 2021 The Go Authors. All rights reserved.
2020-08-25 08:12:16 +10:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// illumos system calls not present on Solaris.
2021-04-01 21:07:21 +11:00
//go:build amd64 && illumos
2020-08-25 08:12:16 +10:00
// +build amd64,illumos
package unix
2021-04-01 21:07:21 +11:00
import (
"unsafe"
)
2020-08-25 08:12:16 +10:00
func bytes2iovec(bs [][]byte) []Iovec {
iovecs := make([]Iovec, len(bs))
for i, b := range bs {
iovecs[i].SetLen(len(b))
if len(b) > 0 {
iovecs[i].Base = &b[0]
2020-08-25 08:12:16 +10:00
} else {
iovecs[i].Base = (*byte)(unsafe.Pointer(&_zero))
2020-08-25 08:12:16 +10:00
}
}
return iovecs
}
//sys readv(fd int, iovs []Iovec) (n int, err error)
2020-08-25 08:12:16 +10:00
func Readv(fd int, iovs [][]byte) (n int, err error) {
iovecs := bytes2iovec(iovs)
n, err = readv(fd, iovecs)
return n, err
}
//sys preadv(fd int, iovs []Iovec, off int64) (n int, err error)
2020-08-25 08:12:16 +10:00
func Preadv(fd int, iovs [][]byte, off int64) (n int, err error) {
iovecs := bytes2iovec(iovs)
n, err = preadv(fd, iovecs, off)
return n, err
}
//sys writev(fd int, iovs []Iovec) (n int, err error)
2020-08-25 08:12:16 +10:00
func Writev(fd int, iovs [][]byte) (n int, err error) {
iovecs := bytes2iovec(iovs)
n, err = writev(fd, iovecs)
return n, err
}
//sys pwritev(fd int, iovs []Iovec, off int64) (n int, err error)
2020-08-25 08:12:16 +10:00
func Pwritev(fd int, iovs [][]byte, off int64) (n int, err error) {
iovecs := bytes2iovec(iovs)
n, err = pwritev(fd, iovecs, off)
return n, err
}
//sys accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) = libsocket.accept4
func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {
var rsa RawSockaddrAny
var len _Socklen = SizeofSockaddrAny
nfd, err = accept4(fd, &rsa, &len, flags)
if err != nil {
return
}
if len > SizeofSockaddrAny {
panic("RawSockaddrAny too small")
}
sa, err = anyToSockaddr(fd, &rsa)
if err != nil {
Close(nfd)
nfd = 0
}
return
}