Skip to content
Snippets Groups Projects
Commit 24f32558 authored by sof's avatar sof
Browse files

[project @ 1998-03-16 20:44:21 by sof]

Alloc rate printing fix; was outputting MUT time
parent 83697981
No related branches found
No related tags found
No related merge requests found
...@@ -520,7 +520,7 @@ stat_exit(I_ alloc) ...@@ -520,7 +520,7 @@ stat_exit(I_ alloc)
if (time - GC_tot_time == 0.0) if (time - GC_tot_time == 0.0)
ullong_format_string((ullong)0, temp, rtsTrue/*commas*/); ullong_format_string((ullong)0, temp, rtsTrue/*commas*/);
else else
ullong_format_string((ullong)(time - GC_tot_time), ullong_format_string((ullong)(GC_tot_alloc*sizeof(W_)/(time - GC_tot_time)),
temp, rtsTrue/*commas*/); temp, rtsTrue/*commas*/);
fprintf(sf, " Alloc rate %s bytes per MUT second\n\n", temp); fprintf(sf, " Alloc rate %s bytes per MUT second\n\n", temp);
......
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