我是靠谱客的博主 无限蚂蚁,最近开发中收集的这篇文章主要介绍libevent定时器使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、定时器处理如下

struct timeval s_send_timeout_tv = {2, 0};
struct event *s_send_timeout_event;

static void read_terminal_cb(int fd, short what, void*arg)
{
    uint i = 0;
    char buf[1024] = {0};
    int len = read(fd, buf, sizeof(buf));
    
    printf("rn------len=%d-------rn", len);    
    
    if (2 == len) {
        evtimer_add(s_send_timeout_event, &s_send_timeout_tv);
    } else if (3 == len ){
        evtimer_del(s_send_timeout_event);
    } else if(4 == len) {        
        evtimer_add(s_send_timeout_event, &s_send_timeout_tv);
    }
}

static void rs485_send_timeout_cb(int fd, short t_event, void *arg)
{
    printf("rn--------->>>>rs485_send_timeout_cb<<<<--------------rn");
}

 
int main()
{
    int i = 0;
    unsigned short modbus = 0x1234;
    
    printf("low=0x%02x high=0x%02xrn", modbus&0xFf, modbus>>8&0xFF);

    
    struct event_base *base = event_init();  
        
    printf("rnhello worldrn");
    
    
    
    struct event *ev2 = event_new(base, STDIN_FILENO, EV_READ|EV_PERSIST, read_terminal_cb, NULL);
    s_send_timeout_event = event_new(base, -1, 0, rs485_send_timeout_cb, (void *)0);
    
    event_add(ev2, NULL);
    
    event_dispatch();
  
}

二、实验现象

三、通过实验现象可说明,单次定时器通过evtimer_add 启动,evtimer_del停止,可循环使用。

最后

以上就是无限蚂蚁为你收集整理的libevent定时器使用的全部内容,希望文章能够帮你解决libevent定时器使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部