summaryrefslogtreecommitdiff
path: root/libgo/go/io/pipe.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/io/pipe.go')
-rw-r--r--libgo/go/io/pipe.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/libgo/go/io/pipe.go b/libgo/go/io/pipe.go
index 179515e78d3..7e98cd2eb78 100644
--- a/libgo/go/io/pipe.go
+++ b/libgo/go/io/pipe.go
@@ -15,11 +15,6 @@ import (
// ErrClosedPipe is the error used for read or write operations on a closed pipe.
var ErrClosedPipe = errors.New("io: read/write on closed pipe")
-type pipeResult struct {
- n int
- err error
-}
-
// A pipe is the shared pipe structure underlying PipeReader and PipeWriter.
type pipe struct {
rl sync.Mutex // gates readers one at a time