Index: src/pkg/runtime/freebsd/amd64/signal.c |
=================================================================== |
--- a/src/pkg/runtime/freebsd/amd64/signal.c |
+++ b/src/pkg/runtime/freebsd/amd64/signal.c |
@@ -190,3 +190,10 @@ |
} |
m->profilehz = hz; |
} |
+ |
+void |
+os·sigpipe(void) |
+{ |
+ sigaction(SIGPIPE, SIG_DFL, false); |
+ runtime·raisesigpipe(); |
+} |