added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / arch / blackfin / include / asm / ucontext.h
blob4a4e3856beba53e6c6abdcb6da0af7af2782d9ca
1 /** Changes made by Tony Kou Lineo Inc. May 2001
3 * Based on: include/m68knommu/ucontext.h
4 */
6 #ifndef _BLACKFIN_UCONTEXT_H
7 #define _BLACKFIN_UCONTEXT_H
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 */
17 #endif /* _BLACKFIN_UCONTEXT_H */