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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright 1994 - 2000 Ralf Baechle (ralf@gnu.org)
  7.  * Copyright 2000 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_PARAM_H
  10. #define _ASM_PARAM_H
  11. #ifndef HZ
  12. #define HZ 100
  13. #  define HZ 100
  14. #ifdef __KERNEL__
  15. #  define hz_to_std(a) (a)
  16. #endif
  17. #endif
  18. #define EXEC_PAGESIZE 4096
  19. #ifndef NGROUPS
  20. #define NGROUPS 32
  21. #endif
  22. #ifndef NOGROUP
  23. #define NOGROUP (-1)
  24. #endif
  25. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  26. #ifdef __KERNEL__
  27. # define CLOCKS_PER_SEC 100 /* frequency at which times() counts */
  28. #endif
  29. #endif /* _ASM_PARAM_H */