accept函数非阻塞返回

当socket(2)完成创建TCP链接(3次握手成功)
再调用accept,则Tn=O(1)
在epoll上注册 socket(2),一旦事件完成,就可以调用accept,此时appept为非阻塞

PS: accept() extracts the first connection request on the queue of pending connections on the queue of pending connections:这个queue的长度应该是listen时指定的长度。