clean
[linux-2.4.21-pre4.git] / include / asm-ppc / ucontext.h
1 /*
2  * BK Id: SCCS/s.ucontext.h 1.7 06/05/01 21:45:24 paulus
3  */
4 #ifndef _ASMPPC_UCONTEXT_H
5 #define _ASMPPC_UCONTEXT_H
6
7 /* Copied from i386. */
8
9 struct ucontext {
10         unsigned long     uc_flags;
11         struct ucontext  *uc_link;
12         stack_t           uc_stack;
13         struct sigcontext_struct uc_mcontext;
14         sigset_t          uc_sigmask;   /* mask last for extensibility */
15 };
16
17 #endif /* !_ASMPPC_UCONTEXT_H */