param.h 672 B

1234567891011121314151617181920212223242526272829303132
  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. #include <linux/config.h>
  7. #ifndef HZ
  8. # ifndef CONFIG_ALPHA_RAWHIDE
  9. # define HZ 1024
  10. # else
  11. # define HZ 1200
  12. # endif
  13. #endif
  14. #define USER_HZ HZ
  15. #define EXEC_PAGESIZE 8192
  16. #ifndef NOGROUP
  17. #define NOGROUP (-1)
  18. #endif
  19. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  20. #ifdef __KERNEL__
  21. # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
  22. #endif
  23. #endif /* _ASM_ALPHA_PARAM_H */