|
From: John R. <jr...@bi...> - 2016-04-04 13:41:56
|
> I'm currently working in an application which uses java/jsp in front end (client side) and C++ as middle tier on a Linux server (server side). Will valgrind still be able to help me identify memory leaks? If the C++ server side is a separate process, and if that process can be invoked under valgrind, and if the process calls exit(), and if the monitoring slowdown of 20X to 50X in CPU time can be tolerated, and if the memory size expansion of about 2X can be handled, and if all allocation uses malloc/free/new/delete (no private allocation arenas), then yes, valgrind can help find memory leaks. Java: no. |