pal_linux_defs.h 436 B

1234567891011121314151617181920
  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. /* internal wrap native pipe inside pipe streams */
  7. #define USE_PIPE_SYSCALL 0
  8. #define USE_VSYSCALL_GETTIME 0
  9. #define USE_VDSO_GETTIME 1
  10. #define USE_CLOCK_GETTIME 1
  11. #define USE_ARCH_RDRAND 0
  12. #define BLOCK_SIGFAULT 0
  13. #endif /* PAL_LINUX_DEFS_H */