param.h 499 B

12345678910111213141516171819202122232425
  1. #ifndef __ASM_GENERIC_PARAM_H
  2. #define __ASM_GENERIC_PARAM_H
  3. #ifdef __KERNEL__
  4. # define HZ CONFIG_HZ /* Internal kernel timer frequency */
  5. # define USER_HZ 100 /* some user interfaces are */
  6. # define CLOCKS_PER_SEC (USER_HZ) /* in "ticks" like times() */
  7. #endif
  8. #ifndef HZ
  9. #define HZ 100
  10. #endif
  11. #ifndef EXEC_PAGESIZE
  12. #define EXEC_PAGESIZE 4096
  13. #endif
  14. #ifndef NOGROUP
  15. #define NOGROUP (-1)
  16. #endif
  17. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  18. #endif /* __ASM_GENERIC_PARAM_H */