1#include <stddef.h>
2#include <sys/ucontext.h>
3
4--
5UC_LINK		offsetof (ucontext_t, uc_link)
6UC_OSF_SIGMASK	offsetof (ucontext_t, __uc_osf_sigmask)
7UC_STACK	offsetof (ucontext_t, uc_stack)
8UC_SIGCTX	offsetof (ucontext_t, uc_mcontext)
9UC_SIGMASK	offsetof (ucontext_t, uc_sigmask)
10SC_REGS		offsetof (mcontext_t, sc_regs)
11SC_FPREGS	offsetof (mcontext_t, sc_fpregs)
12SC_PC		offsetof (mcontext_t, sc_pc)
13SC_PS		offsetof (mcontext_t, sc_ps)
14SC_FPCRS	offsetof (mcontext_t, sc_fpcr)
15SC_MASK		offsetof (mcontext_t, sc_mask)
16SC_FPCR		offsetof (mcontext_t, sc_fpcr)
17SS_SP		offsetof (stack_t, ss_sp)
18SS_SIZE		offsetof (stack_t, ss_size)
19