jiffies
Jiffies is a term used in many Unix-like kernels to denote the global timer tick counter that measures system time in discrete units. The kernel maintains a variable, commonly called jiffies, which increments on each timer interrupt. The rate at which it increments is determined by the system’s timer frequency, denoted by HZ. Jiffies serve as the basic time unit for short durations and form the foundation for scheduling decisions, timeouts, and other time-sensitive kernel logic.
In Linux and similar kernels, jiffies is typically an unsigned long. Because it is a counter that
Jiffies are used to calculate elapsed time by taking the difference between two jiffy values and converting
Related concepts include the HZ value (the timer interrupt frequency), tickless kernel configurations, and higher-resolution timekeeping