From 439cafd68c114b196e741bdc9b9ec0b2a84330b4 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 14 Oct 2010 16:13:44 -0400 Subject: syscall: fix arm networking Suggested by fango (fan.howard@gmail.com) R=r, r2 CC=golang-dev http://codereview.appspot.com/2514041 --- src/pkg/syscall/ztypes_linux_arm.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 } -- cgit v1.2.1