Commit 29225211 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: fix netbsd build

TBR=rsc
R=rsc
CC=golang-codereviews
https://golang.org/cl/140220043
parent d3a2021f
...@@ -149,7 +149,7 @@ struct KeventT { ...@@ -149,7 +149,7 @@ struct KeventT {
uint32 flags; uint32 flags;
uint32 fflags; uint32 fflags;
int64 data; int64 data;
int32 udata; byte *udata;
}; };
......
...@@ -154,7 +154,7 @@ struct KeventT { ...@@ -154,7 +154,7 @@ struct KeventT {
uint32 fflags; uint32 fflags;
byte Pad_cgo_0[4]; byte Pad_cgo_0[4];
int64 data; int64 data;
int64 udata; byte *udata;
}; };
......
...@@ -153,7 +153,7 @@ struct KeventT { ...@@ -153,7 +153,7 @@ struct KeventT {
uint32 flags; uint32 flags;
uint32 fflags; uint32 fflags;
int64 data; int64 data;
int32 udata; byte *udata;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment