mirror of
https://github.com/rwinkhart/sys.git
synced 2026-09-02 15:17:31 -04:00
unix: add Pipe2 on netbsd
Also move TestPipe2 into a separate file, enabling it for all platforms where Pipe2 is available. Change-Id: I1a31e9563f5f60ef0e994abc1db57b7f1c58fe88 Reviewed-on: https://go-review.googlesource.com/c/sys/+/283593 Trust: Tobias Klauser <tobias.klauser@gmail.com> Trust: Benny Siegert <bsiegert@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Benny Siegert <bsiegert@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
committed by
Tobias Klauser
parent
eaf3bda374
commit
3196cb8d8e
@@ -0,0 +1,55 @@
|
|||||||
|
// Copyright 2021 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 solaris
|
||||||
|
|
||||||
|
package unix_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestPipe2(t *testing.T) {
|
||||||
|
const s = "hello"
|
||||||
|
var pipes [2]int
|
||||||
|
err := unix.Pipe2(pipes[:], 0)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("pipe2: %v", err)
|
||||||
|
}
|
||||||
|
r := pipes[0]
|
||||||
|
w := pipes[1]
|
||||||
|
go func() {
|
||||||
|
n, err := unix.Write(w, []byte(s))
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("bad write: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if n != len(s) {
|
||||||
|
t.Errorf("bad write count: %d", n)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = unix.Close(w)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("bad close: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
var buf [10 + len(s)]byte
|
||||||
|
n, err := unix.Read(r, buf[:])
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("bad read: %v", err)
|
||||||
|
}
|
||||||
|
if n != len(s) {
|
||||||
|
t.Fatalf("bad read count: %d", n)
|
||||||
|
}
|
||||||
|
if string(buf[:n]) != s {
|
||||||
|
t.Fatalf("bad contents: %s", string(buf[:n]))
|
||||||
|
}
|
||||||
|
err = unix.Close(r)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("bad close: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -111,6 +111,7 @@ func direntNamlen(buf []byte) (uint64, bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//sysnb pipe() (fd1 int, fd2 int, err error)
|
//sysnb pipe() (fd1 int, fd2 int, err error)
|
||||||
|
|
||||||
func Pipe(p []int) (err error) {
|
func Pipe(p []int) (err error) {
|
||||||
if len(p) != 2 {
|
if len(p) != 2 {
|
||||||
return EINVAL
|
return EINVAL
|
||||||
@@ -119,7 +120,21 @@ func Pipe(p []int) (err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//sysnb pipe2(p *[2]_C_int, flags int) (err error)
|
||||||
|
|
||||||
|
func Pipe2(p []int, flags int) error {
|
||||||
|
if len(p) != 2 {
|
||||||
|
return EINVAL
|
||||||
|
}
|
||||||
|
var pp [2]_C_int
|
||||||
|
err := pipe2(&pp, flags)
|
||||||
|
p[0] = int(pp[0])
|
||||||
|
p[1] = int(pp[1])
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
//sys Getdents(fd int, buf []byte) (n int, err error)
|
//sys Getdents(fd int, buf []byte) (n int, err error)
|
||||||
|
|
||||||
func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
|
func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
|
||||||
n, err = Getdents(fd, buf)
|
n, err = Getdents(fd, buf)
|
||||||
if err != nil || basep == nil {
|
if err != nil || basep == nil {
|
||||||
|
|||||||
@@ -13,48 +13,6 @@ import (
|
|||||||
"golang.org/x/sys/unix"
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestPipe2(t *testing.T) {
|
|
||||||
const s = "hello"
|
|
||||||
var pipes [2]int
|
|
||||||
err := unix.Pipe2(pipes[:], 0)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("pipe2: %v", err)
|
|
||||||
}
|
|
||||||
r := pipes[0]
|
|
||||||
w := pipes[1]
|
|
||||||
go func() {
|
|
||||||
n, err := unix.Write(w, []byte(s))
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("bad write: %v", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if n != len(s) {
|
|
||||||
t.Errorf("bad write count: %d", n)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
err = unix.Close(w)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("bad close: %v", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
var buf [10 + len(s)]byte
|
|
||||||
n, err := unix.Read(r, buf[:])
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("bad read: %v", err)
|
|
||||||
}
|
|
||||||
if n != len(s) {
|
|
||||||
t.Fatalf("bad read count: %d", n)
|
|
||||||
}
|
|
||||||
if string(buf[:n]) != s {
|
|
||||||
t.Fatalf("bad contents: %s", string(buf[:n]))
|
|
||||||
}
|
|
||||||
err = unix.Close(r)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("bad close: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestStatvfs(t *testing.T) {
|
func TestStatvfs(t *testing.T) {
|
||||||
if err := unix.Statvfs("", nil); err == nil {
|
if err := unix.Statvfs("", nil); err == nil {
|
||||||
t.Fatal(`Statvfs("") expected failure`)
|
t.Fatal(`Statvfs("") expected failure`)
|
||||||
|
|||||||
@@ -362,6 +362,16 @@ func pipe() (fd1 int, fd2 int, err error) {
|
|||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func pipe2(p *[2]_C_int, flags int) (err error) {
|
||||||
|
_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Getdents(fd int, buf []byte) (n int, err error) {
|
func Getdents(fd int, buf []byte) (n int, err error) {
|
||||||
var _p0 unsafe.Pointer
|
var _p0 unsafe.Pointer
|
||||||
if len(buf) > 0 {
|
if len(buf) > 0 {
|
||||||
|
|||||||
@@ -362,6 +362,16 @@ func pipe() (fd1 int, fd2 int, err error) {
|
|||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func pipe2(p *[2]_C_int, flags int) (err error) {
|
||||||
|
_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Getdents(fd int, buf []byte) (n int, err error) {
|
func Getdents(fd int, buf []byte) (n int, err error) {
|
||||||
var _p0 unsafe.Pointer
|
var _p0 unsafe.Pointer
|
||||||
if len(buf) > 0 {
|
if len(buf) > 0 {
|
||||||
|
|||||||
@@ -362,6 +362,16 @@ func pipe() (fd1 int, fd2 int, err error) {
|
|||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func pipe2(p *[2]_C_int, flags int) (err error) {
|
||||||
|
_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Getdents(fd int, buf []byte) (n int, err error) {
|
func Getdents(fd int, buf []byte) (n int, err error) {
|
||||||
var _p0 unsafe.Pointer
|
var _p0 unsafe.Pointer
|
||||||
if len(buf) > 0 {
|
if len(buf) > 0 {
|
||||||
|
|||||||
@@ -362,6 +362,16 @@ func pipe() (fd1 int, fd2 int, err error) {
|
|||||||
|
|
||||||
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
|
func pipe2(p *[2]_C_int, flags int) (err error) {
|
||||||
|
_, _, e1 := RawSyscall(SYS_PIPE2, uintptr(unsafe.Pointer(p)), uintptr(flags), 0)
|
||||||
|
if e1 != 0 {
|
||||||
|
err = errnoErr(e1)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
|
||||||
|
|
||||||
func Getdents(fd int, buf []byte) (n int, err error) {
|
func Getdents(fd int, buf []byte) (n int, err error) {
|
||||||
var _p0 unsafe.Pointer
|
var _p0 unsafe.Pointer
|
||||||
if len(buf) > 0 {
|
if len(buf) > 0 {
|
||||||
|
|||||||
Reference in New Issue
Block a user