Index: src/platform-linux.cc |
diff --git a/src/platform-linux.cc b/src/platform-linux.cc |
index 0359b2d79e98d59f8ea8f1f5d7970607b581bc44..d21f160b4340217e67bfa39561f8a33ccda898f0 100644 |
--- a/src/platform-linux.cc |
+++ b/src/platform-linux.cc |
@@ -1088,7 +1088,7 @@ static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) { |
if (sampler == NULL || !sampler->IsActive()) return; |
TickSample sample_obj; |
- TickSample* sample = CpuProfiler::TickSampleEvent(isolate); |
+ TickSample* sample = isolate->cpu_profiler()->TickSampleEvent(); |
if (sample == NULL) sample = &sample_obj; |
// Extracting the sample from the context is extremely machine dependent. |