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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_PRCTL_H
  2. #define _LINUX_PRCTL_H
  3. /* Values to pass as first argument to prctl() */
  4. #define PR_SET_PDEATHSIG  1  /* Second arg is a signal */
  5. #define PR_GET_PDEATHSIG  2  /* Second arg is a ptr to return the signal */
  6. /* Get/set current->mm->dumpable */
  7. #define PR_GET_DUMPABLE   3
  8. #define PR_SET_DUMPABLE   4
  9. /* Get/set unaligned access control bits (if meaningful) */
  10. #define PR_GET_UNALIGN   5
  11. #define PR_SET_UNALIGN   6
  12. # define PR_UNALIGN_NOPRINT 1 /* silently fix up unaligned user accesses */
  13. # define PR_UNALIGN_SIGBUS 2 /* generate SIGBUS on unaligned user access */
  14. /* Get/set whether or not to drop capabilities on setuid() away from uid 0 */
  15. #define PR_GET_KEEPCAPS   7
  16. #define PR_SET_KEEPCAPS   8
  17. /* Get/set floating-point emulation control bits (if meaningful) */
  18. #define PR_GET_FPEMU  9
  19. #define PR_SET_FPEMU 10
  20. # define PR_FPEMU_NOPRINT 1 /* silently emulate fp operations accesses */
  21. # define PR_FPEMU_SIGFPE 2 /* don't emulate fp operations, send SIGFPE instead */
  22. #endif /* _LINUX_PRCTL_H */