From 94361633dfadf4624fd5dc76892c28b934d20240 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Thu, 4 Sep 2014 11:31:39 +0400 Subject: runtime: fix netbsd build TBR=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/140220043 --- src/pkg/runtime/defs_netbsd_386.h | 2 +- src/pkg/runtime/defs_netbsd_amd64.h | 2 +- src/pkg/runtime/defs_netbsd_arm.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pkg') diff --git a/src/pkg/runtime/defs_netbsd_386.h b/src/pkg/runtime/defs_netbsd_386.h index 53d4b30bb..fd87804f9 100644 --- a/src/pkg/runtime/defs_netbsd_386.h +++ b/src/pkg/runtime/defs_netbsd_386.h @@ -149,7 +149,7 @@ struct KeventT { uint32 flags; uint32 fflags; int64 data; - int32 udata; + byte *udata; }; diff --git a/src/pkg/runtime/defs_netbsd_amd64.h b/src/pkg/runtime/defs_netbsd_amd64.h index 6227575c9..dac94b113 100644 --- a/src/pkg/runtime/defs_netbsd_amd64.h +++ b/src/pkg/runtime/defs_netbsd_amd64.h @@ -154,7 +154,7 @@ struct KeventT { uint32 fflags; byte Pad_cgo_0[4]; int64 data; - int64 udata; + byte *udata; }; diff --git a/src/pkg/runtime/defs_netbsd_arm.h b/src/pkg/runtime/defs_netbsd_arm.h index 115fa439a..70f34af47 100644 --- a/src/pkg/runtime/defs_netbsd_arm.h +++ b/src/pkg/runtime/defs_netbsd_arm.h @@ -153,7 +153,7 @@ struct KeventT { uint32 flags; uint32 fflags; int64 data; - int32 udata; + byte *udata; }; -- cgit v1.2.1