~bkerensa/ubuntu/raring/valgrind/merge-from-deb

« back to all changes in this revision

Viewing changes to massif/ms_print.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-19 09:57:35 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20080619095735-0w0fyjp7znob3pek
Tags: upstream-3.3.1
ImportĀ upstreamĀ versionĀ 3.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
589
589
    #-------------------------------------------------------------------------
590
590
    my ($y_label, $y_unit) = B_max_label($peak_mem_total_szB);
591
591
    my ($x_label, $x_unit);
592
 
    if    ($time_unit eq "i") { ($x_label, $x_unit) = i_max_label($end_time) }
593
 
    elsif ($time_unit eq "s") { ($x_label, $x_unit) = t_max_label($end_time) }
594
 
    elsif ($time_unit eq "B") { ($x_label, $x_unit) = B_max_label($end_time) }
595
 
    else                      { die "bad time_unit: $time_unit\n"; }
 
592
    if    ($time_unit eq "i")  { ($x_label, $x_unit) = i_max_label($end_time) }
 
593
    elsif ($time_unit eq "ms") { ($x_label, $x_unit) = t_max_label($end_time) }
 
594
    elsif ($time_unit eq "B")  { ($x_label, $x_unit) = B_max_label($end_time) }
 
595
    else                       { die "bad time_unit: $time_unit\n"; }
596
596
 
597
597
    printf("    %2s\n", $y_unit);
598
598
    for ($y = $graph_y; $y >= 0; $y--) {