Created
December 12, 2011 15:10
-
-
Save shigeki/1467739 to your computer and use it in GitHub Desktop.
libuv fix: option #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void uv__req_init(uv_req_t* req) { | |
req->type = UV_UNKNOWN_REQ; | |
} | |
void uv_req_init(uv_loop_t* loop, uv_req_t* req) { | |
loop->counters.req_init++; | |
uv__req_init(req); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment