diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-11-03 03:11:13 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-03 03:11:13 -0500 |
commit | 36609469c8278554b046aa4cc9a5fa9ccea35306 (patch) | |
tree | f59185b71c8059941de79143f71178453599b8f1 /arch/cris/include/asm/param.h | |
parent | b3acf29afda06c76774dc6df6246c37ae707836b (diff) | |
parent | 45beca08dd8b6d6a65c5ffd730af2eac7a2c7a03 (diff) |
Merge commit 'v2.6.28-rc3' into tracing/ftrace
Diffstat (limited to 'arch/cris/include/asm/param.h')
-rw-r--r-- | arch/cris/include/asm/param.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/cris/include/asm/param.h b/arch/cris/include/asm/param.h new file mode 100644 index 000000000000..0e47994e40be --- /dev/null +++ b/arch/cris/include/asm/param.h | |||
@@ -0,0 +1,23 @@ | |||
1 | #ifndef _ASMCRIS_PARAM_H | ||
2 | #define _ASMCRIS_PARAM_H | ||
3 | |||
4 | /* Currently we assume that HZ=100 is good for CRIS. */ | ||
5 | #ifdef __KERNEL__ | ||
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 | ||
10 | |||
11 | #ifndef HZ | ||
12 | #define HZ 100 | ||
13 | #endif | ||
14 | |||
15 | #define EXEC_PAGESIZE 8192 | ||
16 | |||
17 | #ifndef NOGROUP | ||
18 | #define NOGROUP (-1) | ||
19 | #endif | ||
20 | |||
21 | #define MAXHOSTNAMELEN 64 /* max length of hostname */ | ||
22 | |||
23 | #endif | ||