summaryrefslogtreecommitdiff
path: root/src/pkg
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2014-09-04 11:31:39 +0400
committerDmitriy Vyukov <dvyukov@google.com>2014-09-04 11:31:39 +0400
commit94361633dfadf4624fd5dc76892c28b934d20240 (patch)
tree61ee4ba60e7bfecdd513e097b1ee4744247f56d0 /src/pkg
parentda8dd52cb5f66638e7a6acb7af464fd8ed40511a (diff)
downloadgo-94361633dfadf4624fd5dc76892c28b934d20240.tar.gz
runtime: fix netbsd build
TBR=rsc R=rsc CC=golang-codereviews https://codereview.appspot.com/140220043
Diffstat (limited to 'src/pkg')
-rw-r--r--src/pkg/runtime/defs_netbsd_386.h2
-rw-r--r--src/pkg/runtime/defs_netbsd_amd64.h2
-rw-r--r--src/pkg/runtime/defs_netbsd_arm.h2
3 files changed, 3 insertions, 3 deletions
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;
};