Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 12 lines 277 B view raw
1#ifndef _ASMARM_UCONTEXT_H 2#define _ASMARM_UCONTEXT_H 3 4struct ucontext { 5 unsigned long uc_flags; 6 struct ucontext *uc_link; 7 stack_t uc_stack; 8 struct sigcontext uc_mcontext; 9 sigset_t uc_sigmask; /* mask last for extensibility */ 10}; 11 12#endif /* !_ASMARM_UCONTEXT_H */