diff options
author | Ryan <ry@tinyclouds.org> | 2009-08-25 13:47:18 +0200 |
---|---|---|
committer | Ryan <ry@tinyclouds.org> | 2009-08-25 13:47:18 +0200 |
commit | b5b65ddcd776e59d35200105ed3420c04d07cae9 (patch) | |
tree | 1c0863fe9f268d1910e2ced36be96514d945139d /deps/v8/src/runtime.cc | |
parent | b0a362a72734deb286830e26a3eb20e20234f3e9 (diff) | |
download | node-new-b5b65ddcd776e59d35200105ed3420c04d07cae9.tar.gz |
Upgrade v8 to 1.3.7
Diffstat (limited to 'deps/v8/src/runtime.cc')
-rw-r--r-- | deps/v8/src/runtime.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/runtime.cc b/deps/v8/src/runtime.cc index b3e8aa477d..845ac6308c 100644 --- a/deps/v8/src/runtime.cc +++ b/deps/v8/src/runtime.cc @@ -7263,7 +7263,7 @@ static Object* Runtime_DebugReferencedBy(Arguments args) { ASSERT(args.length() == 3); // First perform a full GC in order to avoid references from dead objects. - Heap::CollectAllGarbage(); + Heap::CollectAllGarbage(false); // Check parameters. CONVERT_CHECKED(JSObject, target, args[0]); @@ -7339,7 +7339,7 @@ static Object* Runtime_DebugConstructedBy(Arguments args) { ASSERT(args.length() == 2); // First perform a full GC in order to avoid dead objects. - Heap::CollectAllGarbage(); + Heap::CollectAllGarbage(false); // Check parameters. CONVERT_CHECKED(JSFunction, constructor, args[0]); @@ -7633,7 +7633,7 @@ void Runtime::PerformGC(Object* result) { // Handle last resort GC and make sure to allow future allocations // to grow the heap without causing GCs (if possible). Counters::gc_last_resort_from_js.Increment(); - Heap::CollectAllGarbage(); + Heap::CollectAllGarbage(false); } } |