Skip to content

Commit

Permalink
src: replace 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 authored and Ali Sheikh committed Mar 4, 2016
1 parent ac32340 commit f50ef1a
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 f50ef1a

Please sign in to comment.