Revision: 10125
Author: [email protected]
Date: Thu Dec 1 06:16:45 2011
Log: Merge r10121 to the 3.7 branch. Use the old idle notification
handler when context is disposed.
http://code.google.com/p/v8/source/detail?r=10125
Modified:
/branches/3.7/src/heap.cc
/branches/3.7/src/version.cc
=======================================
--- /branches/3.7/src/heap.cc Thu Dec 1 00:22:35 2011
+++ /branches/3.7/src/heap.cc Thu Dec 1 06:16:45 2011
@@ -4541,7 +4541,8 @@
bool Heap::IdleNotification(int hint) {
- if (!FLAG_incremental_marking || FLAG_expose_gc ||
Serializer::enabled()) {
+ if (contexts_disposed_ > 0 || !FLAG_incremental_marking ||
+ FLAG_expose_gc || Serializer::enabled()) {
return hint < 1000 ? true : IdleGlobalGC();
}
=======================================
--- /branches/3.7/src/version.cc Thu Dec 1 00:22:35 2011
+++ /branches/3.7/src/version.cc Thu Dec 1 06:16:45 2011
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 7
#define BUILD_NUMBER 12
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev