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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_PPC64_PARAM_H
  2. #define _ASM_PPC64_PARAM_H
  3. /*
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  */
  9. #ifndef HZ
  10. #define HZ 100
  11. #ifdef __KERNEL__
  12. #if HZ == 100
  13. /* ppc (like X86) is defined to provide userspace with a world where HZ=100
  14.    We have to do this, (x*const)/const2 isnt optimised out because its not
  15.    a null operation as it might overflow.. */
  16. #define hz_to_std(a) (a)
  17. #else
  18. #define hz_to_std(a) ((a)*(100/HZ)+((a)*(100%HZ))/HZ)
  19. #endif
  20. #endif
  21. #endif
  22. #define EXEC_PAGESIZE 4096
  23. #ifndef NGROUPS
  24. #define NGROUPS 32
  25. #endif
  26. #ifndef NOGROUP
  27. #define NOGROUP (-1)
  28. #endif
  29. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  30. #ifdef __KERNEL__
  31. # define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
  32. #endif
  33. #endif /* _ASM_PPC64_PARAM_H */