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

Unified Diff: runtime/vm/pages.h

Issue 2929203002: [Fuchsia] Give VMOs names (Closed)
Patch Set: Fix tests Created 3 years, 6 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
« no previous file with comments | « runtime/vm/heap.cc ('k') | runtime/vm/pages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/pages.h
diff --git a/runtime/vm/pages.h b/runtime/vm/pages.h
index 729e94f6a47f36744d6c13629804573d5ce2112a..aaa675e2155eeb6d4dca18ad68ccc15946b6542d 100644
--- a/runtime/vm/pages.h
+++ b/runtime/vm/pages.h
@@ -60,8 +60,12 @@ class HeapPage {
}
// These return NULL on OOM.
- static HeapPage* Initialize(VirtualMemory* memory, PageType type);
- static HeapPage* Allocate(intptr_t size_in_words, PageType type);
+ static HeapPage* Initialize(VirtualMemory* memory,
+ PageType type,
+ const char* name);
+ static HeapPage* Allocate(intptr_t size_in_words,
+ PageType type,
+ const char* name);
// Deallocate the virtual memory backing this page. The page pointer to this
// page becomes immediately inaccessible.
« no previous file with comments | « runtime/vm/heap.cc ('k') | runtime/vm/pages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698