Created
January 28, 2013 22:22
-
-
Save olsonjeffery/4659782 to your computer and use it in GitHub Desktop.
rust_uv.cpp
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
diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp | |
index 2dc7008..4b155bc 100644 | |
--- a/src/rt/rust_uv.cpp | |
+++ b/src/rt/rust_uv.cpp | |
@@ -121,11 +121,6 @@ rust_uv_loop_delete(uv_loop_t* loop) { | |
uv_loop_delete(loop); | |
} | |
-extern "C" int | |
-rust_uv_loop_refcount(uv_loop_t* loop) { | |
- return uv_loop_refcount(loop); | |
-} | |
- | |
extern "C" void | |
rust_uv_loop_set_data(uv_loop_t* loop, void* data) { | |
loop->data = data; | |
@@ -151,7 +146,7 @@ rust_uv_stop_op_cb(uv_handle_t* op_handle) { | |
extern "C" void | |
rust_uv_run(uv_loop_t* loop) { | |
- uv_run(loop); | |
+ uv_run(loop, UV_RUN_DEFAULT); | |
} | |
extern "C" void |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment