| Index: src/platform-solaris.cc
|
| diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc
|
| index a0dfcfad94b26d3ff7801f35fdf9ca32ea6c87fb..aaeff9a962e5affc9d293c89ffd74c3e0788eb67 100644
|
| --- a/src/platform-solaris.cc
|
| +++ b/src/platform-solaris.cc
|
| @@ -669,9 +669,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);
|
| @@ -684,6 +683,7 @@ static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
|
|
|
| sampler->SampleStack(sample);
|
| sampler->Tick(sample);
|
| + CpuProfiler::FinishTickSampleEvent(isolate);
|
| }
|
|
|
| class Sampler::PlatformData : public Malloced {
|
|
|