您现在的位置是:亿华云 > IT科技

从内核看Epoll的实现

亿华云2025-10-04 03:56:58【IT科技】2人已围观

简介复制SYSCALL_DEFINE1(epoll_create1,int,flags){ returndo_epoll_create(flags); }

从内核看Epoll的实现
复制SYSCALL_DEFINE1(epoll_create1,从内 int, flags){       return do_epoll_create(flags);  }  SYSCALL_DEFINE1(epoll_create, int, size){       if (size <= 0)          return -EINVAL;      return do_epoll_create(0);  }  1.2.3.4.5.6.7.8.9.

很赞哦!(4)