

The system timer (beat rate) is defined by static preprocessing, and the hardware is set according to Hz value when the system is started.
#Eon timer linux update
Update statistics on resource consumption and processor time.Check whether the current process has exhausted its own time slice.If the load of running queues is unbalanced, try to balance them. On the smp system, the running queues on each processor in the scheduler are balanced.The system timer interrupts the periodically executed tasks: Wall time = blocking time + ready time + running time, running time = user CPU actual + system CPU time. System running time: the time elapsed since the start of the system, which is very useful for user space and kernel.The number of ticks per second (beat rate) can be obtained through sysconf(_SC_CLK_TCK). Represents the elapsed time (hours) of the system clock from the beginning to the end of the process, including the time of process blocking. Wall clock time: actual time, which is very important for user space applications.It is often used to calculate wall time and system running time.

