diff options
Diffstat (limited to 'include/asm-um/param.h')
-rw-r--r-- | include/asm-um/param.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/asm-um/param.h b/include/asm-um/param.h new file mode 100644 index 00000000000..f914e7d67b0 --- /dev/null +++ b/include/asm-um/param.h @@ -0,0 +1,18 @@ +#ifndef _UM_PARAM_H +#define _UM_PARAM_H + +#define EXEC_PAGESIZE 4096 + +#ifndef NOGROUP +#define NOGROUP (-1) +#endif + +#define MAXHOSTNAMELEN 64 /* max length of hostname */ + +#ifdef __KERNEL__ +#define HZ 100 +#define USER_HZ 100 /* .. some user interfaces are in "ticks" */ +#define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ +#endif + +#endif |