Skip to content

Commit

Permalink
src: replace usage of deprecated TerminateExecution
Browse files Browse the repository at this point in the history
PR-URL: #5159
Reviewed-By: Ben Noordhuis <[email protected]>
  • Loading branch information
targos committed Feb 11, 2016
1 parent 161c45e commit 150efa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_watchdog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void Watchdog::Async(uv_async_t* async) {
void Watchdog::Timer(uv_timer_t* timer) {
Watchdog* w = ContainerOf(&Watchdog::timer_, timer);
uv_stop(w->loop_);
V8::TerminateExecution(w->isolate());
w->isolate()->TerminateExecution();
}


Expand Down

0 comments on commit 150efa6

Please sign in to comment.