https://github.com/torvalds/linux
Raw File
Tip revision: c420bc9f09a0926b708c3edb27eacba434a4f4ba authored by Linus Torvalds on 26 May 2007, 02:55:14 UTC
Linux 2.6.22-rc3
Tip revision: c420bc9
param.h
#ifndef _BLACKFIN_PARAM_H
#define _BLACKFIN_PARAM_H

#ifdef __KERNEL__
#define HZ 		CONFIG_HZ
#define	USER_HZ		100
#define	CLOCKS_PER_SEC	(USER_HZ)
#endif

#ifndef HZ
#define HZ 100
#endif

#define EXEC_PAGESIZE	4096

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

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

#endif				/* _BLACKFIN_PARAM_H */
back to top