diff options
Diffstat (limited to 'include/asm-ppc/ucontext.h')
-rw-r--r-- | include/asm-ppc/ucontext.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-ppc/ucontext.h b/include/asm-ppc/ucontext.h new file mode 100644 index 000000000..12d444cb1 --- /dev/null +++ b/include/asm-ppc/ucontext.h @@ -0,0 +1,13 @@ +#ifndef _ASMPPC_UCONTEXT_H +#define _ASMPPC_UCONTEXT_H + +/* Copied from i386. */ + +struct ucontext { + unsigned long uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + sigset_t uc_sigmask; /* mask last for extensibility */ +}; + +#endif /* !_ASMPPC_UCONTEXT_H */ |