Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASMPPC64_UCONTEXT_H |
| 2 | #define _ASMPPC64_UCONTEXT_H |
| 3 | |
| 4 | #include <asm/sigcontext.h> |
| 5 | |
| 6 | /* |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | struct ucontext { |
| 14 | unsigned long uc_flags; |
| 15 | struct ucontext *uc_link; |
| 16 | stack_t uc_stack; |
| 17 | sigset_t uc_sigmask; |
| 18 | sigset_t __unsued[15]; /* Allow for uc_sigmask growth */ |
| 19 | struct sigcontext uc_mcontext; /* last for extensibility */ |
| 20 | }; |
| 21 | |
| 22 | #endif /* _ASMPPC64_UCONTEXT_H */ |