|
From: Philippe W. <phi...@sk...> - 2015-03-26 20:52:56
|
On Thu, 2015-03-26 at 07:31 +0100, Paul Menzel wrote: > So the table size is increasing as do the nodes, but the survivors > remain constant at 5657. > > Is there a chance that this run will give anything useful, so that I > should leave it running? Or is it in a kind of infinite loop and I can > abort it? Difficult to say without more information. It is not abnormal to have new partially defined bytes created, then transformed to fully initialised bytes, and then GC-ed. This might be a consequence of a bug in your program, likely :) Or it might be a bug in Valgrind, less likely :). You can use gdb+vgdb to see what your program is doing under Valgrind, and e.g. see if/where/why it is looping and/or what it is doing. See http://www.valgrind.org/docs/manual/manual-core-adv.html#manual-core-adv.gdbserver Philippe |