Skip to content
Snippets Groups Projects
Commit 860d98de authored by Kevin Glynn's avatar Kevin Glynn
Browse files

[project @ 1999-11-19 03:44:07 by kglynn]

Removed fix for -ve MUT times,  Simon has put fix in rts/Stats.c,
which is where it should be.
parent 140df603
No related merge requests found
......@@ -431,15 +431,6 @@ sub process_stats_file {
$MutElapsed =~ s/,//g;
$GcTime =~ s/,//g;
$GcElapsed =~ s/,//g;
# if timings are negative (I've seen -0.00s) then set to 0
$InitTime = 0 unless $InitTime >= 0;
$InitElapsed = 0 unless $InitElapsed >= 0;
$MutTime = 0 unless $MutTime >= 0;
$MutElapsed = 0 unless $MutElapsed >= 0;
$GcTime = 0 unless $GcTime >= 0;
$GcElapsed = 0 unless $GcElapsed >= 0;
}
sub process_cacheprof_files {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment