Kernel timer application in advanced Linux systems

Source: Internet
Author: User
Article title: kernel timer application in advanced Linux systems. Linux is a technology channel of the IT lab in China. Including desktop applications, Linux system management, kernel research, embedded systems, open-source and other basic classification Linux kernel timer applications

       
        [CODE]#include
        
         #include
         
          #include
          
           #include
           
            #include#include
            
             #include
             
              MODULE_LICENSE("GPL");static DECLARE_WAIT_QUEUE_HEAD(wq);static int flag = 0;struct timer_list my_timer;void timer_test(unsigned long data){ printk("this is a test\n"); flag = 1; wake_up_interruptible(&wq);}static int __init hello_init(void){ init_timer(&my_timer); my_timer.expires = jiffies + 5000; my_timer.data = 0; my_timer.function = timer_test; add_timer(&my_timer); wait_event_interruptible(wq, flag != 0); flag = 0; return 0;}static void __exit hello_exit(void){ del_timer(&my_timer); printk(KERN_ALERT "Goodbye\n");}module_init(hello_init);module_exit(hello_exit);[/CODE]
             
            
           
          
         
        
       

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.