Author: [EMAIL PROTECTED]
Date: Tue Oct  7 06:26:24 2008
New Revision: 464

Modified:
    branches/bleeding_edge/src/top.cc

Log:
- Changed the stack size in PreallocatedMemoryThread from 16K to 32K
   to make flexo happy.

Review URL: http://codereview.chromium.org/6537

Modified: branches/bleeding_edge/src/top.cc
==============================================================================
--- branches/bleeding_edge/src/top.cc   (original)
+++ branches/bleeding_edge/src/top.cc   Tue Oct  7 06:26:24 2008
@@ -119,7 +119,7 @@
    // When the thread starts running it will allocate a fixed number of  
bytes
    // on the stack and publish the location of this memory for others to  
use.
    void Run() {
-    EmbeddedVector<char, 16 * 1024> local_buffer;
+    EmbeddedVector<char, 32 * 1024> local_buffer;

      // Initialize the buffer with a known good value.
      OS::StrNCpy(local_buffer, "Trace data was not generated.\n",

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to