blob: 4cd4a226f8c125d07668b15fbf239370baa58ebe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _UM_PARAM_H
2#define _UM_PARAM_H
3
4#define EXEC_PAGESIZE 4096
5
6#ifndef NOGROUP
7#define NOGROUP (-1)
8#endif
9
10#define MAXHOSTNAMELEN 64 /* max length of hostname */
11
12#ifdef __KERNEL__
Jeff Dike7281ff92008-02-04 22:31:19 -080013#define HZ CONFIG_HZ
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#define USER_HZ 100 /* .. some user interfaces are in "ticks" */
15#define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
16#endif
17
18#endif