Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 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 */