]> Cypherpunks repositories - gostls13.git/commitdiff
arm: fix syscall build again
authorRuss Cox <rsc@golang.org>
Tue, 12 Oct 2010 19:16:47 +0000 (15:16 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 12 Oct 2010 19:16:47 +0000 (15:16 -0400)
R=ken2
CC=golang-dev
https://golang.org/cl/2465041

src/pkg/syscall/ztypes_linux_arm.go

index 9f4a55bd7424ba3c8f8229181a209f89f1731800..a845985a8ba19544a6f32dfbc71b4e3a149845e0 100644 (file)
@@ -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
 }