From 471639858656eb5895e16bb8cce5f37235ecca24 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Thu, 4 Sep 2014 08:36:18 +0200 Subject: runtime: fix Plan 9 build LGTM=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/138050043 --- src/pkg/runtime/os_plan9.c | 6 ------ src/pkg/runtime/os_plan9.go | 4 ++++ 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'src/pkg') diff --git a/src/pkg/runtime/os_plan9.c b/src/pkg/runtime/os_plan9.c index 98e449251..fad5b2717 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 4a7b16fd6..c45d22551 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") +} -- cgit v1.2.1