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

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