param.h 670 B

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