diff options
author | Michael Stapelberg <stapelberg@debian.org> | 2014-06-19 09:22:53 +0200 |
---|---|---|
committer | Michael Stapelberg <stapelberg@debian.org> | 2014-06-19 09:22:53 +0200 |
commit | 8a39ee361feb9bf46d728ff1ba4f07ca1d9610b1 (patch) | |
tree | 4449f2036cccf162e8417cc5841a35815b3e7ac5 /src/pkg/runtime/defs_openbsd_amd64.h | |
parent | c8bf49ef8a92e2337b69c14b9b88396efe498600 (diff) | |
download | golang-upstream/1.3.tar.gz |
Imported Upstream version 1.3upstream/1.3
Diffstat (limited to 'src/pkg/runtime/defs_openbsd_amd64.h')
-rw-r--r-- | src/pkg/runtime/defs_openbsd_amd64.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/pkg/runtime/defs_openbsd_amd64.h b/src/pkg/runtime/defs_openbsd_amd64.h index eb47ec892..a1ae2ef65 100644 --- a/src/pkg/runtime/defs_openbsd_amd64.h +++ b/src/pkg/runtime/defs_openbsd_amd64.h @@ -133,7 +133,7 @@ struct Sigcontext { int64 sc_rsp; int64 sc_ss; void *sc_fpstate; - int32 sc_onstack; + int32 __sc_unused; int32 sc_mask; }; struct Siginfo { @@ -154,8 +154,7 @@ struct StackT { }; struct Timespec { - int32 tv_sec; - byte Pad_cgo_0[4]; + int64 tv_sec; int64 tv_nsec; }; struct Timeval { @@ -168,11 +167,11 @@ struct Itimerval { }; struct Kevent { - uint32 ident; + uint64 ident; int16 filter; uint16 flags; uint32 fflags; - int32 data; + int64 data; byte *udata; }; |