at v2.6.17 27 lines 489 B view raw
1#ifndef _ASM_M32R_PARAM_H 2#define _ASM_M32R_PARAM_H 3 4/* $Id$ */ 5 6/* orig : i386 2.5.67 */ 7 8#ifdef __KERNEL__ 9# define HZ 100 /* Internal kernel timer frequency */ 10# define USER_HZ 100 /* .. some user interfaces are in "ticks" */ 11# define CLOCKS_PER_SEC (USER_HZ) /* like times() */ 12#endif 13 14#ifndef HZ 15#define HZ 100 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 /* _ASM_M32R_PARAM_H */ 27