diff options
| author | David du Colombier <0intro@gmail.com> | 2014-09-04 08:36:18 +0200 |
|---|---|---|
| committer | David du Colombier <0intro@gmail.com> | 2014-09-04 08:36:18 +0200 |
| commit | b1d01529975d2d87921c88891f85f3faa65e8cea (patch) | |
| tree | b6d0a6aec80ae9788441ecce6b569060ee55648a /src/pkg/runtime | |
| parent | 1b47af21995cfbb5f8367b371b37f7c6f8454f5d (diff) | |
| download | go-b1d01529975d2d87921c88891f85f3faa65e8cea.tar.xz | |
runtime: fix Plan 9 build
LGTM=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/138050043
Diffstat (limited to 'src/pkg/runtime')
| -rw-r--r-- | src/pkg/runtime/os_plan9.c | 6 | ||||
| -rw-r--r-- | src/pkg/runtime/os_plan9.go | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/pkg/runtime/os_plan9.c b/src/pkg/runtime/os_plan9.c index 98e449251a..fad5b2717f 100644 --- a/src/pkg/runtime/os_plan9.c +++ b/src/pkg/runtime/os_plan9.c @@ -317,12 +317,6 @@ runtime·semawakeup(M *mp) runtime·plan9_semrelease(&mp->waitsemacount, 1); } -void -os·sigpipe(void) -{ - runtime·throw("too many writes on closed pipe"); -} - static int64 atolwhex(byte *p) { diff --git a/src/pkg/runtime/os_plan9.go b/src/pkg/runtime/os_plan9.go index 4a7b16fd64..c45d22551f 100644 --- a/src/pkg/runtime/os_plan9.go +++ b/src/pkg/runtime/os_plan9.go @@ -28,3 +28,7 @@ func errstr() string const stackSystem = 512 type _Plink uintptr + +func os_sigpipe() { + gothrow("too many writes on closed pipe") +} |
