diff options
Diffstat (limited to 'arch/blackfin/include/asm/ucontext.h')
-rw-r--r-- | arch/blackfin/include/asm/ucontext.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/ucontext.h b/arch/blackfin/include/asm/ucontext.h new file mode 100644 index 000000000000..4a4e3856beba --- /dev/null +++ b/arch/blackfin/include/asm/ucontext.h | |||
@@ -0,0 +1,17 @@ | |||
1 | /** Changes made by Tony Kou Lineo Inc. May 2001 | ||
2 | * | ||
3 | * Based on: include/m68knommu/ucontext.h | ||
4 | */ | ||
5 | |||
6 | #ifndef _BLACKFIN_UCONTEXT_H | ||
7 | #define _BLACKFIN_UCONTEXT_H | ||
8 | |||
9 | struct ucontext { | ||
10 | unsigned long uc_flags; /* the others are necessary */ | ||
11 | struct ucontext *uc_link; | ||
12 | stack_t uc_stack; | ||
13 | struct sigcontext uc_mcontext; | ||
14 | sigset_t uc_sigmask; /* mask last for extensibility */ | ||
15 | }; | ||
16 | |||
17 | #endif /* _BLACKFIN_UCONTEXT_H */ | ||