https://github.com/torvalds/linux
Raw File
Tip revision: fec6c6fec3e20637bee5d276fb61dd8b49a3f9cc authored by Linus Torvalds on 04 March 2009, 01:05:22 UTC
Linux 2.6.29-rc7
Tip revision: fec6c6f
param.h
#ifndef _ASM_PARAM_H
#define _ASM_PARAM_H

#ifdef __KERNEL__
#define HZ		CONFIG_HZ	/* Internal kernel timer frequency */
#define USER_HZ		100		/* .. some user interfaces are in "ticks" */
#define CLOCKS_PER_SEC	(USER_HZ)	/* like times() */
#endif

#ifndef HZ
#define HZ 100
#endif

#define EXEC_PAGESIZE	16384

#ifndef NOGROUP
#define NOGROUP		(-1)
#endif

#define MAXHOSTNAMELEN		64	/* max length of hostname */

#endif /* _ASM_PARAM_H */
back to top