Hello,
I'm a newbie in Linux so I'm pretty hesitant to proceed without a bit of clarification. I decided to use the better/easy way to change the "Linux Kernel Timer" which is buy editing param.h that is in "/usr/include/asm"
but after reading the instructions carefully I find out there is HZ and USER_HZ. What should I change exactly ? Here are the contents of param.h by default:
#ifndef _ASMi386_PARAM_H
#define _ASMi386_PARAM_H
#include <unistd.h>
#ifndef HZ
#define HZ sysconf(_SC_CLK_TCK)
#endif
#define EXEC_PAGESIZE 4096
#ifndef NGROUPS
#define NGROUPS 32
#endif
#ifndef NOGROUP
#define NOGROUP (-1)
#endif
#define MAXHOSTNAMELEN 64 /* max length of hostname */
#endif
system specs
Intel p4 3.4
2gb ram
centOS kernel 2.6.9-34.0.1.ELsmp
Thanks.
I'm a newbie in Linux so I'm pretty hesitant to proceed without a bit of clarification. I decided to use the better/easy way to change the "Linux Kernel Timer" which is buy editing param.h that is in "/usr/include/asm"
but after reading the instructions carefully I find out there is HZ and USER_HZ. What should I change exactly ? Here are the contents of param.h by default:
#ifndef _ASMi386_PARAM_H
#define _ASMi386_PARAM_H
#include <unistd.h>
#ifndef HZ
#define HZ sysconf(_SC_CLK_TCK)
#endif
#define EXEC_PAGESIZE 4096
#ifndef NGROUPS
#define NGROUPS 32
#endif
#ifndef NOGROUP
#define NOGROUP (-1)
#endif
#define MAXHOSTNAMELEN 64 /* max length of hostname */
#endif
system specs
Intel p4 3.4
2gb ram
centOS kernel 2.6.9-34.0.1.ELsmp
Thanks.