[plt-scheme] Memory leak, correction
At Mon, 2 Dec 2002 13:53:05 -0500, "Zach Buckner" wrote:
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
> Sorry, I now see what's happening:
>
> A) I accidently have profiling enabled... I though this was off
The profiler is keeping statistics about the calls, which accumulates
at a slow rate -- it's basically a counter of the number of calls to
loop and the cumulative time of those calls. This should be roughly
log(n) of the number of calls.
When you turn off the profiler, you don't see accumulation, do you?
(I'm not sure about your second point.)
Robby