Linux-2.6.12-rc2
[linux-flexiantxendom0-natty.git] / include / asm-parisc / param.h
1 #ifndef _ASMPARISC_PARAM_H
2 #define _ASMPARISC_PARAM_H
3
4 #ifdef __KERNEL__
5 #include <linux/config.h>
6 # ifdef CONFIG_PA20
7 #  define HZ            1000            /* Faster machines */
8 # else
9 #  define HZ            100             /* Internal kernel timer frequency */
10 # endif
11 # define USER_HZ        100             /* .. some user interfaces are in "ticks" */
12 # define CLOCKS_PER_SEC (USER_HZ)       /* like times() */
13 #endif
14
15 #ifndef HZ
16 #define HZ 100
17 #endif
18
19 #define EXEC_PAGESIZE   4096
20
21 #ifndef NOGROUP
22 #define NOGROUP         (-1)
23 #endif
24
25 #define MAXHOSTNAMELEN  64      /* max length of hostname */
26
27 #endif