我是靠谱客的博主 背后期待,最近开发中收集的这篇文章主要介绍libevent入门---定时器程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、入门

1.1、概述
Libevent是一个用于开发可扩展性网络服务器的基于事件驱动(event-driven)模型的网络库。Libevent有几个显著的亮点: 
(1)事件驱动(event-driven),高性能;
(2)轻量级,专注于网络,不如 ACE 那么臃肿庞大; 
(3)源代码相当精炼、易读; 
(4)跨平台,支持 Windows、Linux、*BSD和 Mac Os; 
(5)支持多种 I/O多路复用技术, epoll、poll、dev/poll、select 和kqueue 等; 
(6)支持 I/O,定时器和信号等事件; 
(7)注册事件优先级; 

 Libevent 已经被广泛的应用,作为底层的网络库;比如 memcached、 Vomi t、 Nylon、 Netchat等等。


代码

int lasttime;

static void
timeout_cb(int fd, short event, void *arg)
{
struct timeval tv;
struct event *timeout = arg;
int newtime = time(NULL);

//printf("%s: called at %d: %dn", __func__, newtime,
printf("%s: called at %d: %dn", "timeout_cb", newtime,
        newtime - lasttime);
lasttime = newtime;

evutil_timerclear(&tv);
tv.tv_sec = 2;
//重新注册event
event_add(timeout, &tv);
}

int
main (int argc, char **argv)
{
struct event timeout;
struct timeval tv;
 
/* Initalize the event library */
//初始化event环境
event_init();

/* Initalize one event */
//设置事件
evtimer_set(&timeout, timeout_cb, &timeout);

evutil_timerclear(&tv);
tv.tv_sec = 2;
//注册事件
event_add(&timeout, &tv);

lasttime = time(NULL);
    
//等待,分发,处理事件
event_dispatch();

return (0);
}


运行结果:


最后

以上就是背后期待为你收集整理的libevent入门---定时器程序的全部内容,希望文章能够帮你解决libevent入门---定时器程序所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部