freebsd-ports/devel/heaptrack/pkg-descr
Tobias C. Berner 8c70969680 New port: devel/heaptrack
- At the moment this includes only the GUI part and not the actual tracker.

Heaptrack traces all memory allocations and annotates these events with stack
traces. Dedicated analysis tools then allow you to interpret the heap memory
profile to:

  *  find hotspots that need to be optimized to reduce the memory footprint of
     your application
  *  find memory leaks, i.e. locations that allocate memory which is never
     deallocated
  *  find allocation hotspots, i.e. code locations that trigger a lot of
     memory allocation calls
  *  find temporary allocations, which are allocations that are directly
     followed by their deallocation

WWW: https://github.com/KDE/heaptrack
2019-05-25 17:44:14 +00:00

14 lines
611 B
Text

Heaptrack traces all memory allocations and annotates these events with stack
traces. Dedicated analysis tools then allow you to interpret the heap memory
profile to:
* find hotspots that need to be optimized to reduce the memory footprint of
your application
* find memory leaks, i.e. locations that allocate memory which is never
deallocated
* find allocation hotspots, i.e. code locations that trigger a lot of
memory allocation calls
* find temporary allocations, which are allocations that are directly
followed by their deallocation
WWW: https://github.com/KDE/heaptrack