Commit 14d2242f authored by Russ Cox's avatar Russ Cox

syscall: fix arm networking

Suggested by fango (fan.howard@gmail.com)

R=r, r2
CC=golang-dev
https://golang.org/cl/2514041
parent b6cd8f86
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
// MACHINE GENERATED - DO NOT EDIT. // MACHINE GENERATED - DO NOT EDIT.
// Manual corrections: UGH // Manual corrections: TODO(rsc): need to fix godefs
// remove duplicate PtraceRegs type // remove duplicate PtraceRegs type
// change RawSockaddrUnix field to Path [108]int8 (was uint8() // change RawSockaddrUnix field to Path [108]int8 (was uint8()
// add padding to EpollEvent
package syscall package syscall
...@@ -290,6 +291,7 @@ type Ustat_t struct { ...@@ -290,6 +291,7 @@ type Ustat_t struct {
type EpollEvent struct { type EpollEvent struct {
Events uint32 Events uint32
PadFd int32
Fd int32 Fd int32
Pad int32 Pad 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