├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── benchs ├── Makefile ├── space │ ├── Makefile │ ├── plot.R │ ├── run-bench.sh │ └── space.c └── time │ ├── Makefile │ ├── plot.R │ ├── run-bench.sh │ └── time.c ├── sfmalloc.c ├── sfmalloc.h └── tests ├── Makefile ├── leak ├── Makefile ├── leak.c └── run-test.sh └── race ├── Makefile ├── race.c └── run-test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/README.md -------------------------------------------------------------------------------- /benchs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/Makefile -------------------------------------------------------------------------------- /benchs/space/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/space/Makefile -------------------------------------------------------------------------------- /benchs/space/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/space/plot.R -------------------------------------------------------------------------------- /benchs/space/run-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/space/run-bench.sh -------------------------------------------------------------------------------- /benchs/space/space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/space/space.c -------------------------------------------------------------------------------- /benchs/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/time/Makefile -------------------------------------------------------------------------------- /benchs/time/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/time/plot.R -------------------------------------------------------------------------------- /benchs/time/run-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/time/run-bench.sh -------------------------------------------------------------------------------- /benchs/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/benchs/time/time.c -------------------------------------------------------------------------------- /sfmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/sfmalloc.c -------------------------------------------------------------------------------- /sfmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/sfmalloc.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/leak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/leak/Makefile -------------------------------------------------------------------------------- /tests/leak/leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/leak/leak.c -------------------------------------------------------------------------------- /tests/leak/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/leak/run-test.sh -------------------------------------------------------------------------------- /tests/race/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/race/Makefile -------------------------------------------------------------------------------- /tests/race/race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/race/race.c -------------------------------------------------------------------------------- /tests/race/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theldus/safemalloc/HEAD/tests/race/run-test.sh --------------------------------------------------------------------------------