<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > linux 內(nèi)核定時器 timer_list

          linux 內(nèi)核定時器 timer_list

          作者: 時間:2016-11-21 來源:網(wǎng)絡(luò) 收藏
          linux內(nèi)核使用timer_list 結(jié)構(gòu)體當(dāng)作定時器。
          #include "linux/timer.h"
          #include "linux/module.h"
          MODULE_LICENSE("GPL");
          //不加這句話,雖然不影響功能,但“有時候”程序執(zhí)行時會打印錯誤,類似 Disabling lock debugging
          //due to kernel taint 之類的話
          struct timer_list tm;
          static int num;
          static void func()
          {
          num++;
          mod_timer(&tm,jiffies+1*HZ);
          //timer一旦超時,就會執(zhí)行fuc函數(shù),然后永遠(yuǎn)的休眠,
          //所以如果沒有這mod_timer,hello world 只會執(zhí)行一次,也就是timer第一次超時時執(zhí)行的那次。
          //mod_timer可以激活timer。如果你沒有add_timer(),激活也沒用
          printk("hello,world n ,%d",num);
          }
          static int timer_init(void)
          {
          init_timer(&tm); //初始化定時器,必須在所有下面復(fù)制操作前進(jìn)行定時器初始化
          tm.expires = jiffies +1*HZ; //超時1秒,執(zhí)行function
          tm.function = func; //超時后執(zhí)行的函數(shù)
          add_timer(&tm); //將定時器加入定時器等待隊(duì)列中
          return 0;
          }
          static void timer_destory(void)
          {
          del_timer(&tm);
          printk("remove timern");
          }



          關(guān)鍵詞: linux內(nèi)核定

          評論


          技術(shù)專區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();