Home System Tutorial LINUX shock! Timers actually have so many features, did you know?

shock! Timers actually have so many features, did you know?

Jun 14, 2024 am 09:14 AM

shock! Timers actually have so many features, did you know?

In the process of data communication, you will encounter format requirements for data sending time. Therefore, in order to select different timers according to actual requirements in the application, it is necessary to consider the characteristics of several application timers.

Timer article reference

Generally speaking, yes,

1. sleep, usleep and nanosleep

sleep() and nanosleep() both cause the process to sleep for a period of time before being awakened, and their implementations are completely different.

Linux does not provide the system call sleep(). Sleep() is implemented in the library function. It sets the reporting time by calling alarm() and calls sigsuspend() to suspend the process on the signal SIGALARM. , sleep() can only be accurate to the second level.

nanosleep() is a system call in Linux linux timer precision, which is implemented using a timer. This call causes the calling process to sleep and adds a timer_list type to the timer queue. For timers, the time_list structure includes the awakening time and the function to be executed after awakening. The execution function of the timer added through nanosleep() only completes the function of awakening the current process. The system regularly detects these queues through a certain mechanism (for example, after being trapped in the core through a system call and before returning from the core to user mode, it must check whether the time slice of the current process has been exhausted, and if so, call the schedule() function to reschedule. , the timer queue will be detected in this function, and this detection will also be done before the slow interrupt returns). If the timing time has exceeded, the function specified by the timer will be executed to wake up the calling process. In fact, because the system time slice may be lost, the accuracy of nanosleep() is not very high.

linux高精度定时器精度_linux时钟精度_linux 定时器 精度

alarm() is also implemented by the Hongqi Linux operating system through a timer, and its accuracy is only accurate to the second level. In addition, the timer execution function it sets is to send the SIGALRM signal to the current process at the specified time.

2. Use the semaphore SIGALRM+alarm()

Although the alarm method is very good, the accuracy of these methods can reach one second, but it is difficult to have an accuracy higher than one second. The semaphore mechanism of the *nix system is used. First, register the semaphore SIGALRM processing function, call alarm(), and set the timing width. The code is as follows:

linux高精度定时器精度_linux 定时器 精度_linux时钟精度

//设置一个1s延时信号,再注册一个
#include 
#include 
void timer(int sig)
{
if(SIGALRM == sig)
{
printf("timern");
alarm(1); //重新继续定时1s
}

return ;
}
int main()
{
signal(SIGALRM, timer); //注册安装信号

alarm(1); //触发定时器

getchar();

return 0;
}
Copy after login

3. Use RTC mechanism

The RTC mechanism relies on the RealTimeClock mechanism provided by the system hardware. By reading the RTC hardware/dev/rtc and setting the RTC frequency through ioctl(), these methods are more convenient. Linux timer accuracy, with the help of the system The RTC provided by the hardware has adjustable accuracy and a particularly high code as follows:

linux 定时器 精度_linux时钟精度_linux高精度定时器精度

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
int main(int argc, char* argv[])
{
unsigned long i = 0;
unsigned long data = 0;
int retval = 0;
int fd = open ("/dev/rtc", O_RDONLY);

if(fd < 0)
{
perror("open");
exit(errno);
}

/*Set the freq as 4Hz*/
if(ioctl(fd, RTC_IRQP_SET, 1) < 0)
{
perror("ioctl(RTC_IRQP_SET)");
close(fd);
exit(errno);
}
/* Enable periodic interrupts */
if(ioctl(fd, RTC_PIE_ON, 0) < 0)
{
perror("ioctl(RTC_PIE_ON)");
close(fd);
exit(errno);
}

for(i = 0; i < 100; i++)
{
if(read(fd, &data, sizeof(unsigned long)) < 0)
{
perror("read");
close(fd);
exit(errno);

}
printf("timern");
}
/* Disable periodic interrupts */
ioctl(fd, RTC_PIE_OFF, 0);
close(fd);

return 0;
}
Copy after login

This method requires the system to have an RTC device linux boot disk creation tool. Our 1860 has two RTCs. The RTC in the LC1160 of the power management module is used, and there is no support for the RTC_IRQP_SET control word in the driver. This needs to be done later. Add driver implementation.

4、使用select()

能精确到1us,目前精确定时的最流行方案。通过使用select(),来设置定时器;原理借助select()方式的第5个参数,第一个参数设置为0,三个文件描述符集都设置为NULL,第5个参数为时间结构体,代码如下:

#include 
#include 
#include 
#include 
/*seconds: the seconds; mseconds: the micro seconds*/
void setTimer(int seconds, int mseconds)
{
struct timeval temp;

temp.tv_sec = seconds;
temp.tv_usec = mseconds * 1000;

select(0, NULL, NULL, NULL, &temp);
printf("timern");

return ;
}
int main()
{
int i;

for(i = 0 ; i < 100; i++)
setTimer(1, 0);

return 0;
}
Copy after login

结果是,每隔1s复印一次,复印100次。

select定时器是阻塞的,在等待时间到来之前哪些都不做。要定时可以考虑再开一个线程来做。

最终,下层应用程序的定时器的京都是内核决定的,这几个定时器的使用方式,尽管理论上可以精确到微妙,虽然,我分别在微妙级测试的时侯,偏差还是很大的,取决于,当时的cpu和进程的调度,等等。。。。

The above is the detailed content of shock! Timers actually have so many features, did you know?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1662
14
PHP Tutorial
1262
29
C# Tutorial
1236
24
How to learn Linux basics? How to learn Linux basics? Apr 10, 2025 am 09:32 AM

The methods for basic Linux learning from scratch include: 1. Understand the file system and command line interface, 2. Master basic commands such as ls, cd, mkdir, 3. Learn file operations, such as creating and editing files, 4. Explore advanced usage such as pipelines and grep commands, 5. Master debugging skills and performance optimization, 6. Continuously improve skills through practice and exploration.

What is the most use of Linux? What is the most use of Linux? Apr 09, 2025 am 12:02 AM

Linux is widely used in servers, embedded systems and desktop environments. 1) In the server field, Linux has become an ideal choice for hosting websites, databases and applications due to its stability and security. 2) In embedded systems, Linux is popular for its high customization and efficiency. 3) In the desktop environment, Linux provides a variety of desktop environments to meet the needs of different users.

Does the internet run on Linux? Does the internet run on Linux? Apr 14, 2025 am 12:03 AM

The Internet does not rely on a single operating system, but Linux plays an important role in it. Linux is widely used in servers and network devices and is popular for its stability, security and scalability.

What are Linux operations? What are Linux operations? Apr 13, 2025 am 12:20 AM

The core of the Linux operating system is its command line interface, which can perform various operations through the command line. 1. File and directory operations use ls, cd, mkdir, rm and other commands to manage files and directories. 2. User and permission management ensures system security and resource allocation through useradd, passwd, chmod and other commands. 3. Process management uses ps, kill and other commands to monitor and control system processes. 4. Network operations include ping, ifconfig, ssh and other commands to configure and manage network connections. 5. System monitoring and maintenance use commands such as top, df, du to understand the system's operating status and resource usage.

What are the disadvantages of Linux? What are the disadvantages of Linux? Apr 08, 2025 am 12:01 AM

The disadvantages of Linux include user experience, software compatibility, hardware support, and learning curve. 1. The user experience is not as friendly as Windows or macOS, and it relies on the command line interface. 2. The software compatibility is not as good as other systems and lacks native versions of many commercial software. 3. Hardware support is not as comprehensive as Windows, and drivers may be compiled manually. 4. The learning curve is steep, and mastering command line operations requires time and patience.

What is the salary of Linux administrator? What is the salary of Linux administrator? Apr 17, 2025 am 12:24 AM

The average annual salary of Linux administrators is $75,000 to $95,000 in the United States and €40,000 to €60,000 in Europe. To increase salary, you can: 1. Continuously learn new technologies, such as cloud computing and container technology; 2. Accumulate project experience and establish Portfolio; 3. Establish a professional network and expand your network.

Boost Productivity with Custom Command Shortcuts Using Linux Aliases Boost Productivity with Custom Command Shortcuts Using Linux Aliases Apr 12, 2025 am 11:43 AM

Introduction Linux is a powerful operating system favored by developers, system administrators, and power users due to its flexibility and efficiency. However, frequently using long and complex commands can be tedious and er

What are the main tasks of a Linux system administrator? What are the main tasks of a Linux system administrator? Apr 19, 2025 am 12:23 AM

The main tasks of Linux system administrators include system monitoring and performance tuning, user management, software package management, security management and backup, troubleshooting and resolution, performance optimization and best practices. 1. Use top, htop and other tools to monitor system performance and tune it. 2. Manage user accounts and permissions through useradd commands and other commands. 3. Use apt and yum to manage software packages to ensure system updates and security. 4. Configure a firewall, monitor logs, and perform data backup to ensure system security. 5. Troubleshoot and resolve through log analysis and tool use. 6. Optimize kernel parameters and application configuration, and follow best practices to improve system performance and stability.

See all articles