param.h 607 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Fundamental kernel parameters.
  3. *
  4. * Based on <asm-i386/param.h>.
  5. *
  6. * Modified 1998, 1999, 2002-2003
  7. * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
  8. */
  9. #ifndef _UAPI_ASM_IA64_PARAM_H
  10. #define _UAPI_ASM_IA64_PARAM_H
  11. #define EXEC_PAGESIZE 65536
  12. #ifndef NOGROUP
  13. # define NOGROUP (-1)
  14. #endif
  15. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  16. #ifndef __KERNEL__
  17. /*
  18. * Technically, this is wrong, but some old apps still refer to it. The proper way to
  19. * get the HZ value is via sysconf(_SC_CLK_TCK).
  20. */
  21. # define HZ 1024
  22. #endif
  23. #endif /* _UAPI_ASM_IA64_PARAM_H */