ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-arm / param.h
1 /*
2  *  linux/include/asm-arm/param.h
3  *
4  *  Copyright (C) 1995-1999 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 #ifndef __ASM_PARAM_H
11 #define __ASM_PARAM_H
12
13 #include <asm/arch/param.h>     /* for HZ */
14
15 #ifndef __KERNEL_HZ
16 #define __KERNEL_HZ     100
17 #endif
18
19 #ifdef __KERNEL__
20 # define HZ             __KERNEL_HZ     /* Internal kernel timer frequency */
21 # define USER_HZ        100             /* User interfaces are in "ticks" */
22 # define CLOCKS_PER_SEC (USER_HZ)       /* like times() */
23 #else
24 # define HZ             100
25 #endif
26
27 #define EXEC_PAGESIZE   4096
28
29 #ifndef NOGROUP
30 #define NOGROUP         (-1)
31 #endif
32
33 /* max length of hostname */
34 #define MAXHOSTNAMELEN  64
35
36 #endif
37