param.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小: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. #ifdef __KERNEL__
  13. # include <asm/arch/param.h> /* for kernel version of HZ */
  14. # ifndef HZ
  15. #  define HZ 100 /* Internal kernel timer frequency */
  16. # endif
  17. # define USER_HZ 100 /* User interfaces are in "ticks" */
  18. # define CLOCKS_PER_SEC (USER_HZ) /* like times() */
  19. #else
  20. # define HZ 100
  21. #endif
  22. #define EXEC_PAGESIZE 4096
  23. #ifndef NOGROUP
  24. #define NOGROUP         (-1)
  25. #endif
  26. /* max length of hostname */
  27. #define MAXHOSTNAMELEN  64
  28. #endif