| Index: src/platform-cygwin.cc
|
| diff --git a/src/platform-cygwin.cc b/src/platform-cygwin.cc
|
| index 8914d636e5c4434dfa78f0f4bf8f758c397d5d50..67c389e794eca914d0ff9259e10903b5289dff25 100644
|
| --- a/src/platform-cygwin.cc
|
| +++ b/src/platform-cygwin.cc
|
| @@ -687,13 +687,14 @@ class SamplerThread : public Thread {
|
| CONTEXT context;
|
| memset(&context, 0, sizeof(context));
|
|
|
| + Isolate* isolate = sampler->isolate();
|
| TickSample sample_obj;
|
| - TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
|
| + TickSample* sample = isolate->cpu_profiler()->TickSampleEvent();
|
| if (sample == NULL) sample = &sample_obj;
|
|
|
| static const DWORD kSuspendFailed = static_cast<DWORD>(-1);
|
| if (SuspendThread(profiled_thread) == kSuspendFailed) return;
|
| - sample->state = sampler->isolate()->current_vm_state();
|
| + sample->state = isolate->current_vm_state();
|
|
|
| context.ContextFlags = CONTEXT_FULL;
|
| if (GetThreadContext(profiled_thread, &context) != 0) {
|
|
|