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 <davidm@hpl.hp.com>, Hewlett-Packard Co 9 */ 10 #ifndef _UAPI_ASM_IA64_PARAM_H 11 #define _UAPI_ASM_IA64_PARAM_H 12 13 14 #define EXEC_PAGESIZE 65536 15 16 #ifndef NOGROUP 17 # define NOGROUP (-1) 18 #endif 19 20 #define MAXHOSTNAMELEN 64 /* max length of hostname */ 21 22 #ifndef __KERNEL__ 23 /* 24 * Technically, this is wrong, but some old apps still refer to it. The proper way to 25 * get the HZ value is via sysconf(_SC_CLK_TCK). 26 */ 27 # define HZ 1024 28 #endif 29 30 #endif /* _UAPI_ASM_IA64_PARAM_H */ 31