blob: 40b11937180d37afc8bd32034bba45dafd6891ec [file] [log] [blame]
Christoph Lameter59121002005-06-23 00:08:25 -07001#include <linux/config.h>
2
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#ifndef _ASMx86_64_PARAM_H
4#define _ASMx86_64_PARAM_H
5
6#ifdef __KERNEL__
Christoph Lameter59121002005-06-23 00:08:25 -07007# define HZ CONFIG_HZ /* Internal kernel timer frequency */
8# define USER_HZ 100 /* .. some user interfaces are in "ticks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#define CLOCKS_PER_SEC (USER_HZ) /* like times() */
10#endif
11
12#ifndef HZ
13#define HZ 100
14#endif
15
16#define EXEC_PAGESIZE 4096
17
18#ifndef NOGROUP
19#define NOGROUP (-1)
20#endif
21
22#define MAXHOSTNAMELEN 64 /* max length of hostname */
23
24#endif