Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-i386 / param.h
blob095580f3a45cfb4d556427e84c65a9fad15c690f
1 #ifndef _ASMi386_PARAM_H
2 #define _ASMi386_PARAM_H
4 #ifdef __KERNEL__
5 # include <linux/config.h>
6 # define HZ CONFIG_HZ /* Internal kernel timer frequency */
7 # define USER_HZ 100 /* .. some user interfaces are in "ticks" */
8 # define CLOCKS_PER_SEC (USER_HZ) /* like times() */
9 #endif
11 #ifndef HZ
12 #define HZ 100
13 #endif
15 #define EXEC_PAGESIZE 4096
17 #ifndef NOGROUP
18 #define NOGROUP (-1)
19 #endif
21 #define MAXHOSTNAMELEN 64 /* max length of hostname */
22 #define COMMAND_LINE_SIZE 256
24 #endif