sysinfo.h 857 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * include/asm-alpha/sysinfo.h
  3. */
  4. #ifndef __ASM_ALPHA_SYSINFO_H
  5. #define __ASM_ALPHA_SYSINFO_H
  6. /* This defines the subset of the OSF/1 getsysinfo/setsysinfo calls
  7. that we support. */
  8. #define GSI_UACPROC 8
  9. #define GSI_IEEE_FP_CONTROL 45
  10. #define GSI_IEEE_STATE_AT_SIGNAL 46
  11. #define GSI_PROC_TYPE 60
  12. #define GSI_GET_HWRPB 101
  13. #define SSI_NVPAIRS 1
  14. #define SSI_IEEE_FP_CONTROL 14
  15. #define SSI_IEEE_STATE_AT_SIGNAL 15
  16. #define SSI_IEEE_IGNORE_STATE_AT_SIGNAL 16
  17. #define SSI_IEEE_RAISE_EXCEPTION 1001 /* linux specific */
  18. #define SSIN_UACPROC 6
  19. #define UAC_BITMASK 7
  20. #define UAC_NOPRINT 1
  21. #define UAC_NOFIX 2
  22. #define UAC_SIGBUS 4
  23. #ifdef __KERNEL__
  24. /* This is the shift that is applied to the UAC bits as stored in the
  25. per-thread flags. See thread_info.h. */
  26. #define UAC_SHIFT 6
  27. #endif
  28. #endif /* __ASM_ALPHA_SYSINFO_H */