summaryrefslogtreecommitdiff
path: root/src/node_watchdog.cc
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <saghul@gmail.com>2014-03-13 00:08:29 +0100
committerFedor Indutny <fedor@indutny.com>2014-04-07 16:37:20 +0400
commit42b93437102e63ded3e09bbeb24dc96d5b1b62f6 (patch)
tree07b065cd4f65696bae6fecd5606acffd44ad63c1 /src/node_watchdog.cc
parent962f96d3416ee00c78e729bc1c1b05e02d0c1ef2 (diff)
downloadandroid-node-v8-42b93437102e63ded3e09bbeb24dc96d5b1b62f6.tar.gz
android-node-v8-42b93437102e63ded3e09bbeb24dc96d5b1b62f6.tar.bz2
android-node-v8-42b93437102e63ded3e09bbeb24dc96d5b1b62f6.zip
src: update uv callbacks after API changes
async, timer, prepare, idle and check handles no longer get a status parameter since they can never fail.
Diffstat (limited to 'src/node_watchdog.cc')
-rw-r--r--src/node_watchdog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_watchdog.cc b/src/node_watchdog.cc
index dd62dd7432..afa2a7b511 100644
--- a/src/node_watchdog.cc
+++ b/src/node_watchdog.cc
@@ -93,11 +93,11 @@ void Watchdog::Run(void* arg) {
}
-void Watchdog::Async(uv_async_t* async, int status) {
+void Watchdog::Async(uv_async_t* async) {
}
-void Watchdog::Timer(uv_timer_t* timer, int status) {
+void Watchdog::Timer(uv_timer_t* timer) {
V8::TerminateExecution();
}