[PATCH] net/cycx_drv: replace delay_cycx() with msleep_interruptible()
[linux-2.6/linux-loongson.git] / include / asm-parisc / param.h
blobf4694d452dd64f0b08abf1247350d5744c419c3b
1 #ifndef _ASMPARISC_PARAM_H
2 #define _ASMPARISC_PARAM_H
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
15 #ifndef HZ
16 #define HZ 100
17 #endif
19 #define EXEC_PAGESIZE 4096
21 #ifndef NOGROUP
22 #define NOGROUP (-1)
23 #endif
25 #define MAXHOSTNAMELEN 64 /* max length of hostname */
27 #endif