| Index: src/platform-win32.cc
|
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc
|
| index 5e4dcf5850eb7ee451cd3c80cdbace39b9e9cc97..27433b25afd7a47d214efec550a2ea53e33fb373 100644
|
| --- a/src/platform-win32.cc
|
| +++ b/src/platform-win32.cc
|
| @@ -2044,8 +2044,9 @@ class SamplerThread : public Thread {
|
| CONTEXT context;
|
| memset(&context, 0, sizeof(context));
|
|
|
| + TickSample sample_obj;
|
| TickSample* sample = CpuProfiler::StartTickSampleEvent(sampler->isolate());
|
| - if (sample == NULL) return;
|
| + if (sample == NULL) sample = &sample_obj;
|
|
|
| static const DWORD kSuspendFailed = static_cast<DWORD>(-1);
|
| if (SuspendThread(profiled_thread) == kSuspendFailed) return;
|
| @@ -2139,4 +2140,12 @@ void Sampler::Stop() {
|
| }
|
|
|
|
|
| +void Sampler::StartSampling() {
|
| +}
|
| +
|
| +
|
| +void Sampler::StopSampling() {
|
| +}
|
| +
|
| +
|
| } } // namespace v8::internal
|
|
|