Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

check Memory leaks in windows [duplicate]

Possible Duplicate:
Is there a good Valgrind substitute for Windows?

I have used valgrind in Linux. Can anyone tell me some similar tools for checking memory leak in windows?

like image 668
ashmish2 Avatar asked Jan 18 '11 05:01

ashmish2


People also ask

How do I monitor memory leaks in Windows?

Press Windows+R to open the Run dialog; enter "resmon" and click OK. With Resource Monitor open, select the Memory tab. Looking at Physical Memory, start by confirming the correct amount is displayed as installed, to ensure that there isn't a hardware issue.

How do I check my RAM for memory leaks?

To find a memory leak, look at how much RAM the system is using. The Resource Monitor in Windows can be used to accomplish this. In Windows 8.1 and Windows 10: To open the Run dialogue, press Windows+R, then type "resmon" and click OK.

Can I use valgrind on Windows?

Valgrind Memcheck is a tool for detecting memory-usage problems such as leaks, invalid memory access, incorrect freeing, and referencing undefined values. Valgrind integration in CLion works on Linux, macOS, and Windows via WSL (see Valgrind on WSL).


1 Answers

AppVerifier will check for memory leaks, as well as many other kinds of Windows-specific errors.

like image 137
Ana Betts Avatar answered Sep 22 '22 03:09

Ana Betts