2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-22 04:24:02 +08:00
linux-next/include/asm-v850/ucontext.h

15 lines
308 B
C
Raw Normal View History

#ifndef __V850_UCONTEXT_H__
#define __V850_UCONTEXT_H__
#include <asm/sigcontext.h>
struct ucontext {
unsigned long uc_flags;
struct ucontext *uc_link;
stack_t uc_stack;
struct sigcontext uc_mcontext;
sigset_t uc_sigmask; /* mask last for extensibility */
};
#endif /* __V850_UCONTEXT_H__ */