Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.13 26 lines 410 B view raw
1#ifndef _M68KNOMMU_PARAM_H 2#define _M68KNOMMU_PARAM_H 3 4#include <linux/config.h> 5 6#if defined(CONFIG_CLEOPATRA) 7#define HZ 1000 8#endif 9#ifndef HZ 10#define HZ 100 11#endif 12 13#ifdef __KERNEL__ 14#define USER_HZ HZ 15#define CLOCKS_PER_SEC (USER_HZ) 16#endif 17 18#define EXEC_PAGESIZE 4096 19 20#ifndef NOGROUP 21#define NOGROUP (-1) 22#endif 23 24#define MAXHOSTNAMELEN 64 /* max length of hostname */ 25 26#endif /* _M68KNOMMU_PARAM_H */