pal_linux_defs.h 405 B

123456789101112131415161718192021
  1. #ifndef PAL_LINUX_DEFS_H
  2. #define PAL_LINUX_DEFS_H
  3. #define USER_ADDRESS_LOWEST 0x10000
  4. #define THREAD_STACK_SIZE (PRESET_PAGESIZE * 2)
  5. #define ALT_STACK_SIZE PRESET_PAGESIZE
  6. #define USE_VSYSCALL_GETTIME 0
  7. #define USE_VDSO_GETTIME 1
  8. #define USE_CLOCK_GETTIME 1
  9. #define USE_ARCH_RDRAND 0
  10. #define BLOCK_SIGFAULT 0
  11. #ifndef FIONREAD
  12. #define FIONREAD 0x541B
  13. #endif
  14. #endif /* PAL_LINUX_DEFS_H */