asynchronous

Results 11 comments of asynchronous

I also find this problem. the following code for example: ``` class USocket { public: USocket(int in_fd): socket_fd(in_fd) {} ~USocket() { if (::close(socket_fd) < 0) { U_LOG("Socket Close Error fd:...