├── .circleci └── config.yml ├── .github └── FUNDING.yml ├── .gitignore ├── ChangeLog.txt ├── INSTALL.txt ├── LICENSE.txt ├── Makefile.in ├── Manifest.txt ├── README.md ├── RELEASE.txt ├── TODO ├── append.c ├── append.h ├── arg_check.c ├── arg_check.h ├── chunk.c ├── chunk.h ├── chunk_loc.h ├── compat.c ├── compat.h ├── conf.h.in ├── configure ├── configure.ac ├── debug_tok.h ├── dmalloc.c ├── dmalloc.h.1 ├── dmalloc.h.3 ├── dmalloc.h.4 ├── dmalloc.h.5 ├── dmalloc.html ├── dmalloc.spec ├── dmalloc.texi ├── dmalloc_argv.c ├── dmalloc_argv.h ├── dmalloc_argv_loc.h ├── dmalloc_fc_t.c ├── dmalloc_loc.h ├── dmalloc_rand.c ├── dmalloc_rand.h ├── dmalloc_t.c ├── dmalloc_tab.c ├── dmalloc_tab.h ├── dmalloc_tab_loc.h ├── dmallocc.cc ├── dmallocrc ├── env.c ├── env.h ├── error.c ├── error.h ├── error_val.h ├── heap.c ├── heap.h ├── install-sh ├── mkinstalldirs ├── protect.c ├── protect.h ├── release.sh ├── return.h ├── settings.dist ├── user_malloc.c └── user_malloc.h /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/Makefile.in -------------------------------------------------------------------------------- /Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/Manifest.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/RELEASE.txt -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/TODO -------------------------------------------------------------------------------- /append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/append.c -------------------------------------------------------------------------------- /append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/append.h -------------------------------------------------------------------------------- /arg_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/arg_check.c -------------------------------------------------------------------------------- /arg_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/arg_check.h -------------------------------------------------------------------------------- /chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/chunk.c -------------------------------------------------------------------------------- /chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/chunk.h -------------------------------------------------------------------------------- /chunk_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/chunk_loc.h -------------------------------------------------------------------------------- /compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/compat.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/compat.h -------------------------------------------------------------------------------- /conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/conf.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/configure.ac -------------------------------------------------------------------------------- /debug_tok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/debug_tok.h -------------------------------------------------------------------------------- /dmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.c -------------------------------------------------------------------------------- /dmalloc.h.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.h.1 -------------------------------------------------------------------------------- /dmalloc.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.h.3 -------------------------------------------------------------------------------- /dmalloc.h.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.h.4 -------------------------------------------------------------------------------- /dmalloc.h.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.h.5 -------------------------------------------------------------------------------- /dmalloc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.html -------------------------------------------------------------------------------- /dmalloc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.spec -------------------------------------------------------------------------------- /dmalloc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc.texi -------------------------------------------------------------------------------- /dmalloc_argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_argv.c -------------------------------------------------------------------------------- /dmalloc_argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_argv.h -------------------------------------------------------------------------------- /dmalloc_argv_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_argv_loc.h -------------------------------------------------------------------------------- /dmalloc_fc_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_fc_t.c -------------------------------------------------------------------------------- /dmalloc_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_loc.h -------------------------------------------------------------------------------- /dmalloc_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_rand.c -------------------------------------------------------------------------------- /dmalloc_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_rand.h -------------------------------------------------------------------------------- /dmalloc_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_t.c -------------------------------------------------------------------------------- /dmalloc_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_tab.c -------------------------------------------------------------------------------- /dmalloc_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_tab.h -------------------------------------------------------------------------------- /dmalloc_tab_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmalloc_tab_loc.h -------------------------------------------------------------------------------- /dmallocc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmallocc.cc -------------------------------------------------------------------------------- /dmallocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/dmallocrc -------------------------------------------------------------------------------- /env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/env.c -------------------------------------------------------------------------------- /env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/env.h -------------------------------------------------------------------------------- /error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/error.c -------------------------------------------------------------------------------- /error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/error.h -------------------------------------------------------------------------------- /error_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/error_val.h -------------------------------------------------------------------------------- /heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/heap.c -------------------------------------------------------------------------------- /heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/heap.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/install-sh -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/protect.c -------------------------------------------------------------------------------- /protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/protect.h -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/release.sh -------------------------------------------------------------------------------- /return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/return.h -------------------------------------------------------------------------------- /settings.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/settings.dist -------------------------------------------------------------------------------- /user_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/user_malloc.c -------------------------------------------------------------------------------- /user_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j256/dmalloc/HEAD/user_malloc.h --------------------------------------------------------------------------------