mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
Massif: --time-unit=ms was broken in the ms_print script. People obviously
aren't using that option much! git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7361
This commit is contained in:
parent
601dd142a1
commit
a42c4ce504
@ -589,10 +589,10 @@ sub read_input_file()
|
||||
#-------------------------------------------------------------------------
|
||||
my ($y_label, $y_unit) = B_max_label($peak_mem_total_szB);
|
||||
my ($x_label, $x_unit);
|
||||
if ($time_unit eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
|
||||
elsif ($time_unit eq "s") { ($x_label, $x_unit) = t_max_label($end_time) }
|
||||
elsif ($time_unit eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
|
||||
else { die "bad time_unit: $time_unit\n"; }
|
||||
if ($time_unit eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
|
||||
elsif ($time_unit eq "ms") { ($x_label, $x_unit) = t_max_label($end_time) }
|
||||
elsif ($time_unit eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
|
||||
else { die "bad time_unit: $time_unit\n"; }
|
||||
|
||||
printf(" %2s\n", $y_unit);
|
||||
for ($y = $graph_y; $y >= 0; $y--) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user