Make HZ_TO_STD macro name lowercase.
[linux-2.6/linux-mips.git] / include / asm-ia64 / param.h
blobbc4c19ae60e9111a202c7dfdfa9815bc8883c6d4
1 #ifndef _ASM_IA64_PARAM_H
2 #define _ASM_IA64_PARAM_H
4 /*
5 * Fundamental kernel parameters.
7 * Copyright (C) 1998, 1999 Hewlett-Packard Co
8 * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
9 */
11 #include <linux/config.h>
13 #ifdef CONFIG_IA64_HP_SIM
15 * Yeah, simulating stuff is slow, so let us catch some breath between
16 * timer interrupts...
18 # define HZ 20
19 #endif
21 #ifdef CONFIG_IA64_DIG
22 # ifdef CONFIG_IA64_SOFTSDV_HACKS
23 # define HZ 20
24 # else
25 # define HZ 100
26 # endif
27 #endif
29 #ifndef HZ
30 # define HZ 1024
31 #endif
33 #ifdef __KERNEL__
34 #define hz_to_std(a) (a)
35 #endif
37 #define EXEC_PAGESIZE 65536
39 #ifndef NGROUPS
40 # define NGROUPS 32
41 #endif
43 #ifndef NOGROUP
44 # define NOGROUP (-1)
45 #endif
47 #define MAXHOSTNAMELEN 64 /* max length of hostname */
49 #endif /* _ASM_IA64_PARAM_H */