summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-async.c
diff options
context:
space:
mode:
authorFedor Indutny <fedor@indutny.com>2014-04-07 16:36:51 +0400
committerFedor Indutny <fedor@indutny.com>2014-04-07 16:36:51 +0400
commit962f96d3416ee00c78e729bc1c1b05e02d0c1ef2 (patch)
tree54b04b551eaa04e280f416b106c0de5c29b39bda /deps/uv/test/test-async.c
parent95dbb6bf647d90947c0c738533dadf391559be98 (diff)
downloadandroid-node-v8-962f96d3416ee00c78e729bc1c1b05e02d0c1ef2.tar.gz
android-node-v8-962f96d3416ee00c78e729bc1c1b05e02d0c1ef2.tar.bz2
android-node-v8-962f96d3416ee00c78e729bc1c1b05e02d0c1ef2.zip
deps: update libuv to v0.11.23
Diffstat (limited to 'deps/uv/test/test-async.c')
-rw-r--r--deps/uv/test/test-async.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/deps/uv/test/test-async.c b/deps/uv/test/test-async.c
index d4d94d5fa0..6f5351bf15 100644
--- a/deps/uv/test/test-async.c
+++ b/deps/uv/test/test-async.c
@@ -75,11 +75,10 @@ static void close_cb(uv_handle_t* handle) {
}
-static void async_cb(uv_async_t* handle, int status) {
+static void async_cb(uv_async_t* handle) {
int n;
ASSERT(handle == &async);
- ASSERT(status == 0);
uv_mutex_lock(&mutex);
n = ++async_cb_called;
@@ -92,11 +91,10 @@ static void async_cb(uv_async_t* handle, int status) {
}
-static void prepare_cb(uv_prepare_t* handle, int status) {
+static void prepare_cb(uv_prepare_t* handle) {
int r;
ASSERT(handle == &prepare);
- ASSERT(status == 0);
if (prepare_cb_called++)
return;