home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / ia64 / include / asm / ucontext.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  297 b   |  13 lines

  1. #ifndef _ASM_IA64_UCONTEXT_H
  2. #define _ASM_IA64_UCONTEXT_H
  3.  
  4. struct ucontext {
  5.     struct sigcontext uc_mcontext;
  6. };
  7.  
  8. #define uc_link        uc_mcontext.sc_gr[0]    /* wrong type; nobody cares */
  9. #define uc_sigmask    uc_mcontext.sc_sigmask
  10. #define uc_stack    uc_mcontext.sc_stack
  11.  
  12. #endif /* _ASM_IA64_UCONTEXT_H */
  13.