libevent icon indicating copy to clipboard operation
libevent copied to clipboard

实例代码写错了

Open zingerWang opened this issue 2 years ago • 0 comments

在26-简单的epoll服务器.md中的void setnoblocking(int fd)这个函数里面调用了fcntl(fd, F_SETFL);但是实际上应该为fcntl(fd, F_SETFL, opts);否则不会设置成功的,ops只是一个局部的int变量。

zingerWang avatar Dec 26 '23 13:12 zingerWang