11 2014 档案
摘要:Libevent中的timeout事件是使用最小堆来管理维护的.代码位于.看函数命名和代码风格应该是一个C++程序员,函数名都挺好懂的,只是下面这个结构体变量命名比较坑....typedef struct min_heap{ struct event** p; unsigned n, a...
阅读全文
摘要:#!/usr/bin/python# -*- coding: utf-8 -*-import osimport shutildef move_logs(path,filename): destPath = path + '/../log' if os.path.exists(destPa...
阅读全文
摘要:原文链接:http://www.wangafu.net/~nickm/libevent-book/Ref2_eventbase.html创建一个event_base在你使用任何有意思的Libevent函数之前,你需要分配一个或多个event_base结构.每一个event_base结构含有一组eve...
阅读全文
摘要:原文链接:http://www.wangafu.net/~nickm/libevent-book/Ref1_libsetup.htmlSetting up the Libevent libraryLibevent有一些被整个进程共享的全局设置.这些设置会影响到整个库.在使用Libevent库的其余部...
阅读全文