param.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

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