Revision: 13653
Author:   [email protected]
Date:     Wed Feb 13 05:19:38 2013
Log:      Limit stack size of sweeper threads.

BUG=

Review URL: https://codereview.chromium.org/12256006
http://code.google.com/p/v8/source/detail?r=13653

Modified:
 /branches/bleeding_edge/src/sweeper-thread.cc

=======================================
--- /branches/bleeding_edge/src/sweeper-thread.cc       Wed Jan 30 04:19:32 2013
+++ /branches/bleeding_edge/src/sweeper-thread.cc       Wed Feb 13 05:19:38 2013
@@ -35,8 +35,10 @@
 namespace v8 {
 namespace internal {

+static const int kSweeperThreadStackSize = 64 * KB;
+
 SweeperThread::SweeperThread(Isolate* isolate)
-     : Thread("SweeperThread"),
+ : Thread(Thread::Options("v8:SweeperThread", kSweeperThreadStackSize)),
        isolate_(isolate),
        heap_(isolate->heap()),
        collector_(heap_->mark_compact_collector()),

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to