Index: src/cpu-profiler.h |
diff --git a/src/cpu-profiler.h b/src/cpu-profiler.h |
index a51133d4245c35522ed6b0196ce8890ca2b8f534..81f9ae394b0d90a37ac307524302365dd13bfbc9 100644 |
--- a/src/cpu-profiler.h |
+++ b/src/cpu-profiler.h |
@@ -31,6 +31,7 @@ |
#ifdef ENABLE_LOGGING_AND_PROFILING |
#include "circular-queue.h" |
+#include "unbound-queue.h" |
namespace v8 { |
namespace internal { |
@@ -181,7 +182,7 @@ class ProfilerEventsProcessor : public Thread { |
ProfileGenerator* generator_; |
bool running_; |
- CircularQueue<CodeEventsContainer> events_buffer_; |
+ UnboundQueue<CodeEventsContainer> events_buffer_; |
SamplingCircularQueue ticks_buffer_; |
unsigned enqueue_order_; |
}; |