| Index: src/cpu-profiler.cc
|
| ===================================================================
|
| --- src/cpu-profiler.cc (revision 10368)
|
| +++ src/cpu-profiler.cc (working copy)
|
| @@ -42,10 +42,11 @@
|
| static const int kEventsBufferSize = 256*KB;
|
| static const int kTickSamplesBufferChunkSize = 64*KB;
|
| static const int kTickSamplesBufferChunksCount = 16;
|
| +static const int kProfilerStackSize = 32 * KB;
|
|
|
|
|
| ProfilerEventsProcessor::ProfilerEventsProcessor(ProfileGenerator* generator)
|
| - : Thread("v8:ProfEvntProc"),
|
| + : Thread(Thread::Options("v8:ProfEvntProc", kProfilerStackSize)),
|
| generator_(generator),
|
| running_(true),
|
| ticks_buffer_(sizeof(TickSampleEventRecord),
|
|
|