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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/param.h
  3.  *
  4.  *  Copyright (C) 1995-1999 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #ifndef __ASM_PARAM_H
  11. #define __ASM_PARAM_H
  12. #include <asm/arch/param.h> /* for HZ */
  13. #include <asm/proc/page.h> /* for EXEC_PAGE_SIZE */
  14. #ifndef HZ
  15. #define HZ 100
  16. #endif
  17. #if defined(__KERNEL__) && (HZ == 100)
  18. #define hz_to_std(a) (a)
  19. #endif
  20. #ifndef NGROUPS
  21. #define NGROUPS         32
  22. #endif
  23. #ifndef NOGROUP
  24. #define NOGROUP         (-1)
  25. #endif
  26. /* max length of hostname */
  27. #define MAXHOSTNAMELEN  64
  28. #ifdef __KERNEL__
  29. # define CLOCKS_PER_SEC HZ
  30. #endif
  31. #endif