pipe2_bsd.go 637 B

12345678910111213141516171819202122
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build dragonfly || freebsd || netbsd || openbsd
  5. package os
  6. import "syscall"
  7. // Pipe returns a connected pair of Files; reads from r return bytes written to w.
  8. // It returns the files and an error, if any.
  9. func Pipe() (r *File, w *File, err error) {
  10. var p [2]int
  11. e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
  12. if e != nil {
  13. return nil, nil, NewSyscallError("pipe", e)
  14. }
  15. return newFile(uintptr(p[0]), "|0", kindPipe), newFile(uintptr(p[1]), "|1", kindPipe), nil
  16. }