[Holo_wo]-网络编程之eventfd使用说明

该博客展示了一个C++代码示例,使用eventfd在主线程和子线程之间进行通信。通过创建信号处理函数handle_sig来捕获SIGINT信号,然后使用eventfd创建一个文件描述符并在子线程中使用epoll_wait监听此描述符的读事件。主线程周期性地写入eventfd,通知子线程。子线程在接收到通知后执行相应操作。
摘要由CSDN通过智能技术生成
#include <cstdint>
#include <sys/epoll.h>
#include <unistd.h>
#include <sys/eventfd.h>

#include <iostream>
#include <thread>
#include <vector>
#include <chrono>
#include <csignal>

using msg_type_t = std::uint64_t;	//eventfd消息通知,就是8字节.

void handle_sig(int) {
    std::cout << "bye~" << std::endl;
    exit(0);
}

void thread_func(int fd) {
    int ep_fd = ::epoll_create1(0);
    std::vector<struct epoll_event> ready_events(16);
    struct epoll_event ev;
    ev.events = EPOLLIN;
    ev.data.fd = fd;
    epoll_ctl(ep_fd, EPOLL_CTL_ADD, fd, &ev);
    for (;;) {
        int nfd = ::epoll_wait(ep_fd, &*ready_events.begin(), static_cast<int>(ready_events.size()), 1 * 1000);
        if (nfd > 0) {
            for (int i = 0; i < nfd; i++) {
                if (ready_events[i].events & (EPOLLHUP | EPOLLERR)) {
                    // todo
                }
                if (ready_events[i].events & EPOLLIN) {
                    msg_type_t msg;
                    int ret = ::read(ready_events[i].data.fd, &msg, sizeof(msg_type_t));
                    if (ret == -1) {
                        perror("eventfd write");
                    }
                    else {
                        std::cout << "recive main thread notify!" << std::endl;
                    }
                }
            }
        }
        else if (nfd == 0) {
            // nothing happen
        }
        else {
            // error happen
        }
    }
}

int main(int argc, char* argv[]) {
    signal(SIGINT, handle_sig);
    int event_fd = ::eventfd(0, EFD_NONBLOCK);
    std::thread t(thread_func, event_fd);
    for (int i = 0; i < 5; i++) {
        msg_type_t msg = 1; //必须赋值,否则无法触发.
        int ret = ::write(event_fd, &msg, sizeof(msg_type_t));
        if (ret == -1) {
            perror("eventfd write");
        }
        else {
            std::cout << "send signal to sub thread!" << std::endl;
        }
        std::this_thread::sleep_for(std::chrono::seconds(1));
    }
    t.join();
}

编译:

g++ -std=c++11 eventfd_demo.cpp -o eventfd_demo -g -lpthread
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值