Coder Social home page Coder Social logo

memd's Introduction

##Introduction This is a very simple memory leak detector for C. It uses the file system as a database and stores information about any memory that is allocated in files. As memory is freed these files are deleted. Any file left behind after the program exists indicates memory leak.

##How to Use

  1. Simply include mem.h from C files where memory is managed using malloc, calloc, realloc and free.
  2. Link this library (libmemd.a) to the executable.

Example:

#include <stdlib.h>
#include "mem.h"

int main() { 
        void *p;
        
        p = malloc(10); //This will leak
}

Run the executable. For each unfreed memory buffer, a .mem file will be created. For example if memory address 0x7fb1d2403960 leaks, then a file called 0x7fb1d2403960.mem will be left behind after the application exits.

The file will have information about where the memory was allocated and the size of the buffer. For example:

File: test.c
Line: 7
Size: 10 bytes

##Double Free Detection Both free and realloc function will be checked for double free scenario. If a double free is detected you will see message like this in the console:

Double free: 0x7fafb35009e0 File: Dictionary.c Line: 45

memd's People

Contributors

bibhas2 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.