Created
March 27, 2016 19:33
-
-
Save rhizoome/53100f053933a7a53aad to your computer and use it in GitHub Desktop.
Solution libuv WTF
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
//uv.h | |
struct uv_loop_s { | |
/* User data - use this for whatever. */ | |
void* data; | |
/* Loop reference counting. */ | |
unsigned int active_handles; | |
void* handle_queue[2]; | |
void* active_reqs[2]; | |
/* Internal flag to signal loop stop. */ | |
unsigned int stop_flag; | |
...; | |
}; | |
typedef struct uv_loop_s uv_loop_t; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment