Added ability to use default looping behavior of libuv, in use in zone now

This commit is contained in:
KimLS
2020-01-03 19:12:55 -08:00
parent 958a6d939e
commit 6243a31644
2 changed files with 6 additions and 22 deletions
+4
View File
@@ -21,6 +21,10 @@ namespace EQ
uv_run(&m_loop, UV_RUN_NOWAIT);
}
void Run() {
uv_run(&m_loop, UV_RUN_DEFAULT);
}
uv_loop_t* Handle() { return &m_loop; }
private: