Increase default HZ for i386 to 1000

This commit is contained in:
phk 2004-11-06 11:33:43 +00:00
parent 8b96099f88
commit e582d20cf5

View File

@ -51,10 +51,12 @@ __FBSDID("$FreeBSD$");
*/
#ifndef HZ
#ifdef __amd64__
#define HZ 1024
#else
#define HZ 100
# if defined(__amd64__)
# define HZ 1024
# elif defined(__i386__)
# define HZ 1000
# else
# define HZ 100
#endif
#endif
#define NPROC (20 + 16 * maxusers)