Searched defs:ucontext (Results 1 – 14 of 14) sorted by relevance
21 struct ucontext { struct23 struct ucontext __user *uc_link; argument24 stack_t uc_stack;26 int uc_pad[7];27 struct mcontext __user *uc_regs;/* points to uc_mcontext field */29 sigset_t uc_sigmask;32 sigset_t __unused[15]; /* Allow for uc_sigmask growth */33 struct sigcontext uc_mcontext; /* last for extensibility */35 int uc_maskext[30];36 int uc_pad2[3];[all …]
22 struct ucontext { struct24 struct ucontext *uc_link; argument25 stack_t uc_stack;26 sigset_t uc_sigmask;28 __u8 __unused[1024 / 8 - sizeof(sigset_t)];30 struct sigcontext uc_mcontext;
14 struct ucontext { struct16 struct ucontext *uc_link; argument28 * ucontext, so we're putting this at the end in order to allow for argument32 struct sigcontext uc_mcontext;
13 struct ucontext { struct15 struct ucontext *uc_link; argument30 * ucontext, so we're putting this at the end in order to allow for argument35 struct sigcontext uc_mcontext;
5 struct ucontext { struct7 struct ucontext *uc_link; argument8 old_sigset_t uc_osf_sigmask;9 stack_t uc_stack;10 struct sigcontext uc_mcontext;11 sigset_t uc_sigmask; /* mask last for extensibility */
5 struct ucontext { struct7 struct ucontext *uc_link; argument8 stack_t uc_stack;9 struct sigcontext uc_mcontext;10 sigset_t uc_sigmask; /* mask last for extensibility */
14 struct ucontext { struct16 struct ucontext *uc_link; argument17 stack_t uc_stack;18 struct sigcontext uc_mcontext;19 sigset_t uc_sigmask; /* mask last for extensibility */
54 struct ucontext { struct57 struct ucontext *uc_link; argument62 /* Extended context structures may follow ucontext */ argument63 unsigned long long uc_extcontext[];
31 struct ucontext { struct33 struct ucontext *uc_link; argument34 stack_t uc_stack;35 _sigregs uc_mcontext;36 sigset_t uc_sigmask;38 unsigned char __unused[128 - sizeof(sigset_t)];
22 struct ucontext { struct24 struct ucontext *uc_link; argument25 stack_t uc_stack;26 struct mcontext uc_mcontext;27 unsigned long uc_filler[80];28 sigset_t uc_sigmask; /* mask last for extensibility */
18 struct ucontext { struct20 struct ucontext *uc_link; argument21 stack_t uc_stack;22 struct sigcontext uc_mcontext;23 sigset_t uc_sigmask;25 int __unused[32 - (sizeof (sigset_t) / sizeof (int))];28 unsigned long uc_regspace[128] __attribute__((__aligned__(8)));
5 struct ucontext { struct6 struct sigcontext uc_mcontext;
64 struct ucontext { struct65 struct ucontext *uc_link; argument70 typedef struct ucontext ucontext_t; argument
59 #define ucontext ucontext32 macro