Skip to content
Snippets Groups Projects
Commit c107c621 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-11-11 13:17:36 by simonmar]

avoid those annoying -0.00 times.
parent ebf2878a
No related branches found
No related tags found
No related merge requests found
/* -----------------------------------------------------------------------------
* $Id: Stats.c,v 1.17 1999/11/09 15:46:57 simonmar Exp $
* $Id: Stats.c,v 1.18 1999/11/11 13:17:36 simonmar Exp $
*
* (c) The GHC Team, 1998-1999
*
......@@ -327,6 +327,7 @@ stat_startExit(void)
MutUserTime = usertime();
#else
MutUserTime = usertime() - GC_tot_time - InitUserTime;
if (MutUserTime < 0) { MutUserTime = 0; }
#endif
}
......
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