Commit d687ea55 authored by Russ Cox's avatar Russ Cox

arm: fix syscall build again

R=ken2
CC=golang-dev
https://golang.org/cl/2465041
parent 2a198650
......@@ -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
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment