aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-10-12 15:16:47 -0400
committerRuss Cox <rsc@golang.org>2010-10-12 15:16:47 -0400
commitd687ea5588ef04942e3c1a41bdf31f447258f2b0 (patch)
tree38b50a11375eba2fb997206ee6c0344ad7b46913
parent2a198650123508a601a5537c5774409a272453cc (diff)
downloadgo-d687ea5588ef04942e3c1a41bdf31f447258f2b0.tar.gz
go-d687ea5588ef04942e3c1a41bdf31f447258f2b0.zip
arm: fix syscall build again
R=ken2 CC=golang-dev https://golang.org/cl/2465041
-rw-r--r--src/pkg/syscall/ztypes_linux_arm.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pkg/syscall/ztypes_linux_arm.go b/src/pkg/syscall/ztypes_linux_arm.go
index 9f4a55bd74..a845985a8b 100644
--- a/src/pkg/syscall/ztypes_linux_arm.go
+++ b/src/pkg/syscall/ztypes_linux_arm.go
@@ -2,6 +2,10 @@
// MACHINE GENERATED - DO NOT EDIT.
+// Manual corrections: UGH
+// remove duplicate PtraceRegs type
+// change RawSockaddrUnix field to Path [108]int8 (was uint8()
+
package syscall
// Constants
@@ -181,7 +185,7 @@ type RawSockaddrInet6 struct {
type RawSockaddrUnix struct {
Family uint16
- Path [108]uint8
+ Path [108]int8
}
type RawSockaddrLinklayer struct {
@@ -247,8 +251,6 @@ type InotifyEvent struct {
type PtraceRegs struct{}
-type PtraceRegs struct{}
-
type FdSet struct {
Bits [32]int32
}