From: Russ Cox Date: Thu, 29 Jul 2010 01:21:50 +0000 (-0700) Subject: gc: fix SIGBUS X-Git-Tag: weekly.2010-07-29~14 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=491a3ca5b74fc4c06746020594d716b30195a923;p=gostls13.git gc: fix SIGBUS R=ken2 CC=golang-dev https://golang.org/cl/1906042 --- diff --git a/include/u.h b/include/u.h index 6dd55a09c7..3cc1f335c7 100644 --- a/include/u.h +++ b/include/u.h @@ -68,6 +68,7 @@ extern "C" { #include #include #include /* for tolower */ +#include /* * OS-specific crap @@ -192,6 +193,10 @@ typedef u64int uint64; #undef _NEEDUINT #undef _NEEDULONG +#ifndef SIGBUS +#define SIGBUS SIGSEGV /* close enough */ +#endif + /* * Funny-named symbols to tip off 9l to autolink. */ diff --git a/src/cmd/gc/go.h b/src/cmd/gc/go.h index cef3153c83..6b87a782f6 100644 --- a/src/cmd/gc/go.h +++ b/src/cmd/gc/go.h @@ -3,7 +3,6 @@ // license that can be found in the LICENSE file. #include -#include #include #include