sigcontext.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: sigcontext.h,v 1.1 2000/07/10 16:32:31 bjornw Exp $ */
  2. #ifndef _ASM_CRIS_SIGCONTEXT_H
  3. #define _ASM_CRIS_SIGCONTEXT_H
  4. #include <asm/ptrace.h>
  5. /* This struct is saved by setup_frame in signal.c, to keep the current context while
  6.    a signal handler is executed. It's restored by sys_sigreturn.
  7.    
  8.    To keep things simple, we use pt_regs here even though normally you just specify
  9.    the list of regs to save. Then we can use copy_from_user on the entire regs instead
  10.    of a bunch of get_user's as well...
  11. */
  12. struct sigcontext {
  13. struct pt_regs regs;  /* needs to be first */
  14. unsigned long oldmask;
  15. unsigned long usp;    /* usp before stacking this gunk on it */
  16. };
  17. #endif