Index: src/platform-linux.cc |
diff --git a/src/platform-linux.cc b/src/platform-linux.cc |
index 1d16f75f71343918e96407d0cb1a61853de0366c..f8e5fdfb7e73c6650966d8bdd24fed5fe1cebdfc 100644 |
--- a/src/platform-linux.cc |
+++ b/src/platform-linux.cc |
@@ -1012,9 +1012,8 @@ static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) { |
Sampler* sampler = isolate->logger()->sampler(); |
if (sampler == NULL || !sampler->IsActive()) return; |
- TickSample sample_obj; |
- TickSample* sample = CpuProfiler::TickSampleEvent(isolate); |
- if (sample == NULL) sample = &sample_obj; |
+ TickSample* sample = CpuProfiler::StartTickSampleEvent(isolate); |
+ if (sample == NULL) return; |
// Extracting the sample from the context is extremely machine dependent. |
ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context); |
@@ -1049,6 +1048,7 @@ static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) { |
#endif // V8_HOST_ARCH_* |
sampler->SampleStack(sample); |
sampler->Tick(sample); |
+ CpuProfiler::FinishTickSampleEvent(isolate); |
} |