From aeed966fe05e63b725eed604ed79558abbb52a66 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 18 Mar 2011 11:39:44 -0700 Subject: [PATCH] Don't call GetMemoryUsage every 5 seconds --- src/node.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/node.cc b/src/node.cc index 11bfd92..fa2fab2 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1483,9 +1483,10 @@ static void CheckStatus(EV_P_ ev_timer *watcher, int revents) { assert(revents == EV_TIMEOUT); // check memory - size_t rss, vsize; - if (!ev_is_active(&gc_idle) && Platform::GetMemory(&rss, &vsize) == 0) { - if (rss > 1024*1024*128) { + if (!ev_is_active(&gc_idle)) { + HeapStatistics stats; + V8::GetHeapStatistics(&stats); + if (stats.total_heap_size() > 1024 * 1024 * 128) { // larger than 128 megs, just start the idle watcher ev_idle_start(EV_A_ &gc_idle); return; -- 2.7.4