aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-10-14 16:13:44 -0400
committerRuss Cox <rsc@golang.org>2010-10-14 16:13:44 -0400
commit14d2242fb966386410f8aef42a623ca42f1cd237 (patch)
treeabebe61ee618a487e1791471968f215171643e5f
parentb6cd8f869d997d0c13defdbad688d1c663ff5f78 (diff)
downloadgo-14d2242fb966386410f8aef42a623ca42f1cd237.tar.gz
go-14d2242fb966386410f8aef42a623ca42f1cd237.zip
syscall: fix arm networking
Suggested by fango (fan.howard@gmail.com) R=r, r2 CC=golang-dev https://golang.org/cl/2514041
-rw-r--r--src/pkg/syscall/ztypes_linux_arm.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pkg/syscall/ztypes_linux_arm.go b/src/pkg/syscall/ztypes_linux_arm.go
index a845985a8b..e90edfbade 100644
--- a/src/pkg/syscall/ztypes_linux_arm.go
+++ b/src/pkg/syscall/ztypes_linux_arm.go
@@ -2,9 +2,10 @@
// MACHINE GENERATED - DO NOT EDIT.
-// Manual corrections: UGH
+// Manual corrections: TODO(rsc): need to fix godefs
// remove duplicate PtraceRegs type
// change RawSockaddrUnix field to Path [108]int8 (was uint8()
+// add padding to EpollEvent
package syscall
@@ -290,6 +291,7 @@ type Ustat_t struct {
type EpollEvent struct {
Events uint32
+ PadFd int32
Fd int32
Pad int32
}