过时便当

文章
5
资源
0
加入时间
2年10月21天

open write read

open#include<fcntl.h>int open(const char *pathname, int flags, mode_t mode)flags有三个必须选项 O_RDONLY, O_WRONLY, O_RDWR 只读,只写,读写flags其他选项O_CREAT, O_APPENDO_CREAT 这个参数必须和第三个参数mode一起使用,mode指定文件的访...

使用libevent实现简单定时器

功能:使用libevent实现简单定时器,每10s触发一次流程:代码://简单定时器#include <event2/event.h>#include <stdio.h>#include <time.h>#include <assert.h>#include <signal.h>class simple_timer final{public: virt