https://github.com/torvalds/linux
Raw File
Tip revision: 53c8ba95402be65d412a806cda3430f0e72cd107 authored by Linus Torvalds on 05 June 2008, 03:10:44 UTC
Linux 2.6.26-rc5
Tip revision: 53c8ba9
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