Windows phone profiler, heap summary shows not a complete summary?

这一生的挚爱 提交于 2019-12-13 04:23:57

问题


Graph shows that it is used about 30 MBs of memory. However, Heap summary shows info for less than 1 MB (if looking at "retained allocations at end). What can be a reason for that, how to get the rest?


回答1:


The profiler only shows you allocations done by managed code. Unfortunately, allocations can be done by native code too (for instance, when you load a picture), and those aren't traced by the profiler. This makes tracking memory leaks especially tricky on Windows Phone.



来源:https://stackoverflow.com/questions/17341250/windows-phone-profiler-heap-summary-shows-not-a-complete-summary

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!