Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use timer in Linux C language

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Write a program (library) to realize the function of timer (timer), which can provide users with timers used many times in the same process. Here, it is required to be realized by signal. The sample code is as follows: # include # include static int time_count = 0; static struct itimerval oldtv; void set_timer () {struct itimerval itv; itv.it_interval.tv_sec = 1; itv.it_interval.tv_usec = 0; itv.it_value.tv_sec = 1; itv.it_value.tv_usec = 0 Setitimer (ITIMER_REAL, & itv, & oldtv);} void signal_handler (int m) {time_count + +; printf ("% d\ n", time_count);} int main () {signal (SIGALRM, signal_handler); set_timer (); while (1) {if (time_count==5) {printf ("time_count= 5\ n") Time_count=0;}} return 1;}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report