track C++ memory allocations

前端 未结 8 1861
执笔经年
执笔经年 2020-11-28 04:18

I am looking for a way to track memory allocations in a C++ program. I am not interested in memory leaks, which seem to be what most tools are trying to find, but r

8条回答
  •  独厮守ぢ
    2020-11-28 04:45

    On Xcode, you can use Instruments to track allocations, VM usage, and several other parameters. Mostly popular among iOS developers, but worth a try.

提交回复
热议问题