Merge master.kernel.org:/home/rmk/linux-2.6-arm
[linux-block.git] / include / asm-x86_64 / param.h
CommitLineData
59121003
CL
1#include <linux/config.h>
2
1da177e4
LT
3#ifndef _ASMx86_64_PARAM_H
4#define _ASMx86_64_PARAM_H
5
6#ifdef __KERNEL__
59121003
CL
7# define HZ CONFIG_HZ /* Internal kernel timer frequency */
8# define USER_HZ 100 /* .. some user interfaces are in "ticks */
1da177e4
LT
9#define CLOCKS_PER_SEC (USER_HZ) /* like times() */
10#endif
11
12#ifndef HZ
13#define HZ 100
14#endif
15
16#define EXEC_PAGESIZE 4096
17
18#ifndef NOGROUP
19#define NOGROUP (-1)
20#endif
21
22#define MAXHOSTNAMELEN 64 /* max length of hostname */
23
24#endif