Analysis of Linux operating system time delay and operation Delay

Source: Internet
Author: User

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:

 
 
  1. Unsigned long timespec_to_jiffies (struct timespec * value );
  2. Void jiffies_to_timespec (unsigned long jiffies, struct timespec * value );
  3. Unsigned long timeval_to_jiffies (struct timeval * value );
  4. Void jiffies_to_timeval (unsigned long jiffies, struct timeval * value );
 
Here, timespec and timeval are the clock time structures in linux:
 
   
   
  1. struct timeval {   
  2. time_t tv_sec; /* seconds */   
  3. suseconds_t tv_usec; /* microseconds */   
  4. };  
  5. struct timespec   
  6. {   
  7. long int tv_sec;   
  8. long int tv_nsec;   
  9. }; 
 
Header files using this structure are in # include. The common functions are:
 
   
   
  1. int gettimeofday(struct timeval *tv, struct timezone *tz); 
 
In this way, you can solve the problem of time delay and operation delay in Linux.
  1. New prospects for Linux
  2. Detailed introduction to Linux grep commands
  3. How to obtain the file size in Linux
  4. Introduction to Linux folders
  5. Easily install Flash Media Server in Linux

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.