From: Russ Cox Date: Fri, 24 Feb 2012 04:10:38 +0000 (-0500) Subject: runtime: fix arm X-Git-Tag: weekly.2012-03-04~169 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=51a84bbfaa812fe0421ab4a1607bf87b43d2a877;p=gostls13.git runtime: fix arm signal.test binary passes on my phone; should fix builder R=golang-dev, r CC=golang-dev https://golang.org/cl/5694064 --- diff --git a/src/pkg/runtime/defs_arm_linux.go b/src/pkg/runtime/defs_arm_linux.go index 2063efb067..db0a191542 100644 --- a/src/pkg/runtime/defs_arm_linux.go +++ b/src/pkg/runtime/defs_arm_linux.go @@ -114,7 +114,6 @@ const ( ITIMER_VIRTUAL = C.ITIMER_VIRTUAL ) -type Sigset C.sigset_t type Timespec C.struct_timespec type Sigaltstack C.struct_sigaltstack type Sigcontext C.struct_sigcontext diff --git a/src/pkg/runtime/defs_linux_arm.h b/src/pkg/runtime/defs_linux_arm.h index da97a84339..9e5c83a079 100644 --- a/src/pkg/runtime/defs_linux_arm.h +++ b/src/pkg/runtime/defs_linux_arm.h @@ -69,8 +69,6 @@ enum { // Types #pragma pack on -typedef uint32 Sigset; - typedef struct Timespec Timespec; struct Timespec { int32 tv_sec;