Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117994
b: refs/heads/master
c: 06d1cd2
h: refs/heads/master
v: v3
  • Loading branch information
Alan Jenkins authored and Ingo Molnar committed Oct 22, 2008
1 parent 5d8ad6d commit 78fc9c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2a813f8cd8ce91d588a595c5709502dece3af289
refs/heads/master: 06d1cd267ca0a2a76beb9a762465572dd3d0cce6
6 changes: 3 additions & 3 deletions trunk/scripts/bootgraph.pl
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@
my $stylecounter = 0;
my %rows;
my $rowscount = 1;
my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start);
my $key;
my $value;
while (($key,$value) = each %start) {
foreach $key (@initcalls) {
my $duration = $end{$key} - $start{$key};

if ($duration >= $threshold) {
Expand All @@ -121,7 +121,7 @@
$rows{$pid} = $rowscount;
$rowscount = $rowscount + 1;
}
$s = ($value - $firsttime) * $mult;
$s = ($start{$key} - $firsttime) * $mult;
$s2 = $s + 6;
$e = ($end{$key} - $firsttime) * $mult;
$w = $e - $s;
Expand Down

0 comments on commit 78fc9c8

Please sign in to comment.