https://github.com/torvalds/linux
Raw File
Tip revision: a18bcb7450840f07a772a45229de4811d930f461 authored by Linus Torvalds on 06 July 2005, 03:46:33 UTC
Linux v2.6.13-rc3
Tip revision: a18bcb7
param.h
#ifndef _ASM_PARAM_H
#define _ASM_PARAM_H

#ifdef __KERNEL__
#define HZ		1000		/* 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 */
#define COMMAND_LINE_SIZE	512

#endif /* _ASM_PARAM_H */
back to top