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 #include <asm/proc/page.h> /* for EXEC_PAGE_SIZE */
15
16 #ifndef HZ
17 #define HZ 100
18 #endif
19
20 #ifndef NGROUPS
21 #define NGROUPS 32
22 #endif
23
24 #ifndef NOGROUP
25 #define NOGROUP (-1)
26 #endif
27
28 /* max length of hostname */
29 #define MAXHOSTNAMELEN 64
30
31 #endif
32
33
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.