ucontext.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASMPPC64_UCONTEXT_H
  2. #define _ASMPPC64_UCONTEXT_H
  3. #include <asm/sigcontext.h>
  4. /* Copied from i386. 
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */
  11. struct ucontext {
  12. unsigned long   uc_flags;
  13. struct ucontext  *uc_link;
  14. stack_t   uc_stack;
  15. struct sigcontext_struct uc_mcontext;
  16. sigset_t   uc_sigmask; /* mask last for extensibility */
  17. };
  18. #endif /* _ASMPPC64_UCONTEXT_H */