Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _ASM_ALPHA_PARAM_H
2#define _ASM_ALPHA_PARAM_H
3
4/* ??? Gross. I don't want to parameterize this, and supposedly the
5 hardware ignores reprogramming. We also need userland buy-in to the
6 change in HZ, since this is visible in the wait4 resources etc. */
7
8#define HZ CONFIG_HZ
9#define USER_HZ HZ
10
11#define EXEC_PAGESIZE 8192
12
13#ifndef NOGROUP
14#define NOGROUP (-1)
15#endif
16
17#define MAXHOSTNAMELEN 64 /* max length of hostname */
18
19#ifdef __KERNEL__
20# define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
21#endif
22
23#endif /* _ASM_ALPHA_PARAM_H */