https://www.cnblogs.com/embedded-linux/p/6791560.html
https://bryceknowhow.blogspot.com/2017/02/openwrt-ubusinter-process-communication.html
int epoll_create(int size); 创建epoll的句柄,size告诉内核这个监听的数目一共有多大。其实是在内核申请一空间,用来存放你想关注的socket fd上是否发生以及发生了什么事件。size就是你在这个epoll fd上能关注的最大socket fd数。
比如 int ep_fd = epoll_create(int size); ep_fd占一个fd. fd是文件标识符。
来自于https://bryceknowhow.blogspot.com/2017/02/openwrt-ubusinter-process-communication.html