param.h 444 B

123456789101112131415161718192021222324
  1. #ifndef __ASM_AVR32_PARAM_H
  2. #define __ASM_AVR32_PARAM_H
  3. #ifdef __KERNEL__
  4. # define HZ CONFIG_HZ
  5. # define USER_HZ 100 /* User interfaces are in "ticks" */
  6. # define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
  7. #endif
  8. #ifndef HZ
  9. # define HZ 100
  10. #endif
  11. /* TODO: Should be configurable */
  12. #define EXEC_PAGESIZE 4096
  13. #ifndef NOGROUP
  14. # define NOGROUP (-1)
  15. #endif
  16. #define MAXHOSTNAMELEN 64
  17. #endif /* __ASM_AVR32_PARAM_H */