Reviewers: Kasper Lund, Description: - Changed the stack size in PreallocatedMemoryThread from 16K to 32K to make flexo happy.
Please review this at http://codereview.chromium.org/6537 Affected files: M src/top.cc Index: src/top.cc =================================================================== --- src/top.cc (revision 461) +++ src/top.cc (working copy) @@ -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 -~----------~----~----~----~------~----~------~--~---
