Skip to content

Commit

Permalink
src: fix GetCpuProfiler() deprecation warning
Browse files Browse the repository at this point in the history
Refs: #46
  • Loading branch information
targos authored and nodejs-ci committed May 14, 2018
1 parent f15af32 commit 88c2ef5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,12 @@ void Environment::CleanupHandles() {
void Environment::StartProfilerIdleNotifier() {
uv_prepare_start(&idle_prepare_handle_, [](uv_prepare_t* handle) {
Environment* env = ContainerOf(&Environment::idle_prepare_handle_, handle);
env->isolate()->GetCpuProfiler()->SetIdle(true);
env->isolate()->SetIdle(true);
});

uv_check_start(&idle_check_handle_, [](uv_check_t* handle) {
Environment* env = ContainerOf(&Environment::idle_check_handle_, handle);
env->isolate()->GetCpuProfiler()->SetIdle(false);
env->isolate()->SetIdle(false);
});
}

Expand Down

0 comments on commit 88c2ef5

Please sign in to comment.