To learn about the linux operating system, you may encounter time delays and operation delays in the Linux operating system. Here we will introduce the time delays and solutions to the operation delays in the Linux operating system, I will share it with you here.
1. The timer header function in the kernel is # include
2. The Hz symbol indicates the number of tick answers generated per second, that is, the interruption of time generated in one second.
3. # include
Volatile unsigned long jiffies uses this variable to measure time changes.
4. int time_after (unsigned long a, unsigned long B)
Int time_before (unsigned long a, unsigned long B)
These boolean expressions compare the value of jiffies in a safe way, so you do not need to consider the problem of timer overflow.
5. The value conversion between the time represented by jiffies and other representation methods:
- Unsigned long timespec_to_jiffies (struct timespec * value );
- Void jiffies_to_timespec (unsigned long jiffies, struct timespec * value );
- Unsigned long timeval_to_jiffies (struct timeval * value );
- Void jiffies_to_timeval (unsigned long jiffies, struct timeval * value );
Here, timespec and timeval are the clock time structures in linux:
- struct timeval {
- time_t tv_sec; /* seconds */
- suseconds_t tv_usec; /* microseconds */
- };
- struct timespec
- {
- long int tv_sec;
- long int tv_nsec;
- };
Header files using this structure are in # include. The common functions are:
- int gettimeofday(struct timeval *tv, struct timezone *tz);
In this way, you can solve the problem of time delay and operation delay in Linux.
- New prospects for Linux
- Detailed introduction to Linux grep commands
- How to obtain the file size in Linux
- Introduction to Linux folders
- Easily install Flash Media Server in Linux