├── .gitignore ├── Makefile ├── README.md ├── allocmap.cc ├── heap.png └── mappings.png /.gitignore: -------------------------------------------------------------------------------- 1 | allocmap 2 | *.o 3 | *~ 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepper/allocmap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepper/allocmap/HEAD/README.md -------------------------------------------------------------------------------- /allocmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepper/allocmap/HEAD/allocmap.cc -------------------------------------------------------------------------------- /heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepper/allocmap/HEAD/heap.png -------------------------------------------------------------------------------- /mappings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drepper/allocmap/HEAD/mappings.png --------------------------------------------------------------------------------