aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/asm-um/param.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-um/param.h')
-rw-r--r--include/asm-um/param.h18
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 000000000000..f914e7d67b01
--- /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