Skip to content

iNarcissuss/AMemcheck

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

AMemcheck is a memory error detector for Android. It can detect the following problems that are common in C and C++ programs.
1. Accessing memory you shouldn't, e.g. overrunning and underrunning heap blocks, overrunning the top of the stack, and accessing memory after it has been freed.
2. Incorrect freeing of heap memory, such as double-freeing heap blocks, or mismatched use of malloc versus free
3. Memory leaks.

HOWTO
see test/test.c

If you need help with the library, or just want to discuss related issues,
you can contact me: Michael Chen (omxcodec@gmail.com)

About

Android memory check

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 70.0%
  • C 25.4%
  • Makefile 4.6%