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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/param.h
  3.  *
  4.  *  S390 version
  5.  *
  6.  *  Derived from "include/asm-i386/param.h"
  7.  */
  8. #ifndef _ASMS390_PARAM_H
  9. #define _ASMS390_PARAM_H
  10. #ifndef HZ
  11. #define HZ 100
  12. #ifdef __KERNEL__
  13. #define hz_to_std(a) (a)
  14. #endif
  15. #endif
  16. #define EXEC_PAGESIZE 4096
  17. #ifndef NGROUPS
  18. #define NGROUPS 32
  19. #endif
  20. #ifndef NOGROUP
  21. #define NOGROUP (-1)
  22. #endif
  23. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  24. #ifdef __KERNEL__
  25. # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
  26. #endif
  27.                                  
  28. #endif