summaryrefslogtreecommitdiff
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
commit439cafd68c114b196e741bdc9b9ec0b2a84330b4 (patch)
treeff26eb289638b19cbcc58a25de2043283c03007f
parent3a2b714cb0cdd0d220ff3b55ea8377d272b68546 (diff)
downloadgo-439cafd68c114b196e741bdc9b9ec0b2a84330b4.tar.gz
syscall: fix arm networking
Suggested by fango (fan.howard@gmail.com) R=r, r2 CC=golang-dev http://codereview.appspot.com/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 a845985a8..e90edfbad 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
}