| Index: src/platform-openbsd.cc
|
| diff --git a/src/platform-openbsd.cc b/src/platform-openbsd.cc
|
| index b622e4ac9c58743842a94b7038dcd0d955ec1ee1..e7dfd0d0cdcc4992db57bb46651220169cc3ce00 100644
|
| --- a/src/platform-openbsd.cc
|
| +++ b/src/platform-openbsd.cc
|
| @@ -734,9 +734,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.
|
| sample->state = isolate->current_vm_state();
|
| @@ -765,6 +764,7 @@ static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
|
| #endif // __NetBSD__
|
| sampler->SampleStack(sample);
|
| sampler->Tick(sample);
|
| + CpuProfiler::FinishTickSampleEvent(isolate);
|
| }
|
|
|
|
|
|
|