param.h 376 B

123456789101112131415161718
  1. #ifndef _UM_PARAM_H
  2. #define _UM_PARAM_H
  3. #define EXEC_PAGESIZE 4096
  4. #ifndef NOGROUP
  5. #define NOGROUP (-1)
  6. #endif
  7. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  8. #ifdef __KERNEL__
  9. #define HZ 100
  10. #define USER_HZ 100 /* .. some user interfaces are in "ticks" */
  11. #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
  12. #endif
  13. #endif