Index: tools/deep_memory_profiler/dmprof.py |
diff --git a/tools/deep_memory_profiler/dmprof.py b/tools/deep_memory_profiler/dmprof.py |
index 96862af8c979827527a08b204e14a40563159acd..4029cfa926462ad1a50bcb1da514743f83b84378 100644 |
--- a/tools/deep_memory_profiler/dmprof.py |
+++ b/tools/deep_memory_profiler/dmprof.py |
@@ -742,8 +742,8 @@ class Dump(object): |
lambda n: self._lines[n] != 'GLOBAL_STATS:\n') |
global_stat_names = [ |
- 'total', 'file-exec', 'file-nonexec', 'anonymous', 'stack', 'other', |
- 'nonprofiled-absent', 'nonprofiled-anonymous', |
+ 'total', 'absent', 'file-exec', 'file-nonexec', 'anonymous', 'stack', |
+ 'other', 'nonprofiled-absent', 'nonprofiled-anonymous', |
'nonprofiled-file-exec', 'nonprofiled-file-nonexec', |
'nonprofiled-stack', 'nonprofiled-other', |
'profiled-mmap', 'profiled-malloc'] |
@@ -984,6 +984,7 @@ class PolicyCommands(Command): |
for key, value in { |
'total': 'total_committed', |
'filemapped': 'file_committed', |
+ 'absent': 'absent_committed', |
Alexander Potapenko
2013/03/13 13:03:19
I wonder if you can make this map global and use t
Dai Mikurube (NOT FULLTIME)
2013/03/14 11:26:22
Yeah, I actually would like to do it, but it actua
|
'file-exec': 'file-exec_committed', |
'file-nonexec': 'file-nonexec_committed', |
'anonymous': 'anonymous_committed', |