diff options
author | Matthew Dempsky <mdempsky@google.com> | 2014-08-29 20:51:26 -0700 |
---|---|---|
committer | Matthew Dempsky <mdempsky@google.com> | 2014-08-29 20:51:26 -0700 |
commit | 45117a27b41528d7eb3e7ebae040c15db1e47a95 (patch) | |
tree | 24cffd6e46214af62589214c927428017296fc82 /src/pkg/runtime/defs_openbsd_386.h | |
parent | f7ff7cf3bf9e02341e265acf26295cfaece12f39 (diff) | |
download | go-45117a27b41528d7eb3e7ebae040c15db1e47a95.tar.gz |
runtime: fix openbsd build
LGTM=iant
R=iant, minux
CC=golang-codereviews, jsing
https://codereview.appspot.com/135230043
Committer: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/pkg/runtime/defs_openbsd_386.h')
-rw-r--r-- | src/pkg/runtime/defs_openbsd_386.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/defs_openbsd_386.h b/src/pkg/runtime/defs_openbsd_386.h index 669a35c35..6b77e0084 100644 --- a/src/pkg/runtime/defs_openbsd_386.h +++ b/src/pkg/runtime/defs_openbsd_386.h @@ -81,7 +81,7 @@ enum { EVFILT_WRITE = -0x2, }; -typedef struct Tfork Tfork; +typedef struct TforkT TforkT; typedef struct SigaltstackT SigaltstackT; typedef struct Sigcontext Sigcontext; typedef struct Siginfo Siginfo; @@ -93,7 +93,7 @@ typedef struct KeventT KeventT; #pragma pack on -struct Tfork { +struct TforkT { byte *tf_tcb; int32 *tf_tid; byte *tf_stack; |