https://bugs.kde.org/show_bug.cgi?id=469146
--- Comment #13 from Paul Floyd <pjfl...@wanadoo.fr> --- I forgot, one thing I was thinking of was to try to speed up the allocs/frees iipc = VG_(new_IIPC)(ep, ips[i]); ... VG_(delete_IIPC)(iipc); that are in the two stack loops. My plan is to split up VG_(new_IIPC) so that it uses a new function VG_(init_IIPC) That would allow InlIPCursor iipc; // stack allocation ... VG_(init_IIPC)(&iipc, ep, ips[i]); ... // no need for heap deallocation -- You are receiving this mail because: You are watching all bug changes.