Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: runtime/vm/virtual_memory_linux.cc

Issue 2654183002: Rename references to "external pages" as "snapshot pages" to avoid confusion with the kind of exter… (Closed)
Patch Set: image Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/virtual_memory_linux.cc
diff --git a/runtime/vm/virtual_memory_linux.cc b/runtime/vm/virtual_memory_linux.cc
index 3c4abec3d29657c8941307df7e909d13b365ff41..cc571396fdb7ec4255c26e36b194d2c01f1a56db 100644
--- a/runtime/vm/virtual_memory_linux.cc
+++ b/runtime/vm/virtual_memory_linux.cc
@@ -53,7 +53,7 @@ static void unmap(void* address, intptr_t size) {
VirtualMemory::~VirtualMemory() {
- if (!embedder_allocated()) {
+ if (vm_owns_region()) {
unmap(address(), reserved_size_);
}
}

Powered by Google App Engine
This is Rietveld 408576698