param.h 567 B

1234567891011121314151617181920212223
  1. #ifndef _ASM_ALPHA_PARAM_H
  2. #define _ASM_ALPHA_PARAM_H
  3. /* ??? Gross. I don't want to parameterize this, and supposedly the
  4. hardware ignores reprogramming. We also need userland buy-in to the
  5. change in HZ, since this is visible in the wait4 resources etc. */
  6. #define HZ CONFIG_HZ
  7. #define USER_HZ HZ
  8. #define EXEC_PAGESIZE 8192
  9. #ifndef NOGROUP
  10. #define NOGROUP (-1)
  11. #endif
  12. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  13. #ifdef __KERNEL__
  14. # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
  15. #endif
  16. #endif /* _ASM_ALPHA_PARAM_H */