lmprof
lmprof copied to clipboard
Lua Memory Profiler (lmprof)
Results
2
lmprof issues
Sort by
recently updated
recently updated
newest added
code: https://github.com/pmusa/lmprof/blob/master/src/lmprof.c#L302 ```c if (nsize > osize && st->increment_alloc_count == 1) { st->alloc_count = st->alloc_count + (nsize - osize); } ``` when nsize < osize, it means memory reduce, why...