From: bak@chromium.org Date: Tue, 7 Oct 2008 13:26:24 +0000 (+0000) Subject: - Changed the stack size in PreallocatedMemoryThread from 16K to 32K X-Git-Tag: upstream/4.7.83~25231 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9ec0d2589773b88db34e506b073ec14e82d5993;p=platform%2Fupstream%2Fv8.git - Changed the stack size in PreallocatedMemoryThread from 16K to 32K to make flexo happy. Review URL: http://codereview.chromium.org/6537 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@464 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/top.cc b/src/top.cc index 712e94b..8ad4c23 100644 --- a/src/top.cc +++ b/src/top.cc @@ -119,7 +119,7 @@ class PreallocatedMemoryThread: public Thread { // 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 local_buffer; + EmbeddedVector local_buffer; // Initialize the buffer with a known good value. OS::StrNCpy(local_buffer, "Trace data was not generated.\n",