Thanks to the Java Native Interface (JNI), Java applications can interact with native code. While memory allocations made by Java code are automatically managed by garbage collection, native code is responsible for its own memory …
Continue readingMonth: May 2024
Alternative to Visual Leak Detector
In this article, you will discover the limitations of a popular open-source library for detecting memory leaks, called Visual Leak Detector. Additionally, you will learn about an alternative to Visual Leak Detector, known as Deleaker. …
Continue readingHow to detect leaks in ISAPI DLL Written in Delphi?
In this guide, you will learn how to detect leaks in an ISAPI extension developed in Delphi. By using a sample ISAPI extension as an example, we will demonstrate how to utilize a memory profiler …
Continue reading