1#ifndef _ASMi386_PARAM_H
2#define _ASMi386_PARAM_H
3
4#ifndef HZ
5#define HZ 100
6#ifdef __KERNEL__
7#define hz_to_std(a) (a)
8#endif
9#endif
10
11#define EXEC_PAGESIZE	4096
12
13#ifndef NGROUPS
14#define NGROUPS		32
15#endif
16
17#ifndef NOGROUP
18#define NOGROUP		(-1)
19#endif
20
21#define MAXHOSTNAMELEN	64	/* max length of hostname */
22
23#ifdef __KERNEL__
24# define CLOCKS_PER_SEC	100	/* frequency at which times() counts */
25#endif
26
27#endif
28