diff options
| author | Tobias Klauser <tobias.klauser@gmail.com> | 2018-08-26 18:50:33 +0000 |
|---|---|---|
| committer | Tobias Klauser <tobias.klauser@gmail.com> | 2018-08-26 21:30:35 +0000 |
| commit | a700ae98630b4e4dd03a0ead627941d6bb1d55bf (patch) | |
| tree | 474b5270c367d0ed8d7fcebeca25e8d89f21ef7a /src/os | |
| parent | 969b9d8127c0ef3bbffeb1fa7d13a7ec1afccce4 (diff) | |
| download | go-a700ae98630b4e4dd03a0ead627941d6bb1d55bf.tar.xz | |
Revert "syscall, os: use pipe2 syscall on DragonflyBSD instead of pipe"
This reverts commit e6c15945dee0661dee6111183d4951853c4c2d98.
Reason for revert: breaks the Dragonfly builders.
Fixes #27245
Change-Id: I2c147a5726aec28647f6ef5eb8f9db5efa3a9fd0
Reviewed-on: https://go-review.googlesource.com/131497
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/os')
| -rw-r--r-- | src/os/pipe2_bsd.go | 2 | ||||
| -rw-r--r-- | src/os/pipe_bsd.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/os/pipe2_bsd.go b/src/os/pipe2_bsd.go index 7d2d9e8ffd..0ef894b476 100644 --- a/src/os/pipe2_bsd.go +++ b/src/os/pipe2_bsd.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build dragonfly freebsd netbsd openbsd +// +build freebsd netbsd openbsd package os diff --git a/src/os/pipe_bsd.go b/src/os/pipe_bsd.go index 6fd10dbc1a..9735988f32 100644 --- a/src/os/pipe_bsd.go +++ b/src/os/pipe_bsd.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build darwin js,wasm nacl solaris +// +build darwin dragonfly js,wasm nacl solaris package os |
