Commit e37892c3 authored by Devon H. O'Dell's avatar Devon H. O'Dell Committed by Andrew Gerrand

freebsd-386: update defs

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/4273102
parent 1b2c3e66
......@@ -61,6 +61,9 @@ enum {
BUS_OBJERR = 0x3,
SEGV_MAPERR = 0x1,
SEGV_ACCERR = 0x2,
ITIMER_REAL = 0,
ITIMER_VIRTUAL = 0x1,
ITIMER_PROF = 0x2,
};
// Types
......@@ -154,7 +157,9 @@ struct Mcontext {
int32 mc_ownedfp;
int32 mc_spare1[1];
int32 mc_fpstate[128];
int32 mc_spare2[8];
int32 mc_fsbase;
int32 mc_gsbase;
int32 mc_spare2[6];
};
typedef struct Ucontext Ucontext;
......@@ -165,6 +170,18 @@ struct Ucontext {
StackT uc_stack;
int32 uc_flags;
int32 __spare__[4];
byte pad0[12];
byte pad_godefs_0[12];
};
typedef struct Timeval Timeval;
struct Timeval {
int32 tv_sec;
int32 tv_usec;
};
typedef struct Itimerval Itimerval;
struct Itimerval {
Timeval it_interval;
Timeval it_value;
};
#pragma pack off
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