param.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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 EXEC_PAGESIZE 8192
  15. #ifndef NGROUPS
  16. #define NGROUPS 32
  17. #endif
  18. #ifndef NOGROUP
  19. #define NOGROUP (-1)
  20. #endif
  21. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  22. #ifdef __KERNEL__
  23. # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
  24. #endif
  25. #endif /* _ASM_ALPHA_PARAM_H */