├── Makefile.txt ├── README.md ├── clock.c ├── clock.h ├── clock.o ├── config.h ├── fcyc.c ├── fcyc.h ├── fcyc.o ├── fsecs.c ├── fsecs.h ├── fsecs.o ├── ftimer.c ├── ftimer.h ├── ftimer.o ├── mdriver ├── mdriver.c ├── mdriver.o ├── memlib.c ├── memlib.h ├── memlib.o ├── mm.c ├── mm.c~ ├── mm.h ├── mm.o ├── short1-bal.rep ├── short2-bal.rep ├── traces ├── amptjp-bal.rep ├── binary-bal.rep ├── binary2-bal.rep ├── cccp-bal.rep ├── coalescing-bal.rep ├── cp-decl-bal.rep ├── expr-bal.rep ├── random-bal.rep ├── random2-bal.rep ├── realloc-bal.rep ├── realloc-bal.rep~ ├── realloc2-bal.rep ├── realloc2-bal.rep~ ├── short1-bal.rep └── short2-bal.rep ├── writeup.txt └── writeup.txt~ /Makefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/Makefile.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/README.md -------------------------------------------------------------------------------- /clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/clock.c -------------------------------------------------------------------------------- /clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/clock.h -------------------------------------------------------------------------------- /clock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/clock.o -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/config.h -------------------------------------------------------------------------------- /fcyc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fcyc.c -------------------------------------------------------------------------------- /fcyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fcyc.h -------------------------------------------------------------------------------- /fcyc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fcyc.o -------------------------------------------------------------------------------- /fsecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fsecs.c -------------------------------------------------------------------------------- /fsecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fsecs.h -------------------------------------------------------------------------------- /fsecs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/fsecs.o -------------------------------------------------------------------------------- /ftimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/ftimer.c -------------------------------------------------------------------------------- /ftimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/ftimer.h -------------------------------------------------------------------------------- /ftimer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/ftimer.o -------------------------------------------------------------------------------- /mdriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mdriver -------------------------------------------------------------------------------- /mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mdriver.c -------------------------------------------------------------------------------- /mdriver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mdriver.o -------------------------------------------------------------------------------- /memlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/memlib.c -------------------------------------------------------------------------------- /memlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/memlib.h -------------------------------------------------------------------------------- /memlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/memlib.o -------------------------------------------------------------------------------- /mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mm.c -------------------------------------------------------------------------------- /mm.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mm.c~ -------------------------------------------------------------------------------- /mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mm.h -------------------------------------------------------------------------------- /mm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/mm.o -------------------------------------------------------------------------------- /short1-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/short1-bal.rep -------------------------------------------------------------------------------- /short2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/short2-bal.rep -------------------------------------------------------------------------------- /traces/amptjp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/amptjp-bal.rep -------------------------------------------------------------------------------- /traces/binary-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/binary-bal.rep -------------------------------------------------------------------------------- /traces/binary2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/binary2-bal.rep -------------------------------------------------------------------------------- /traces/cccp-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/cccp-bal.rep -------------------------------------------------------------------------------- /traces/coalescing-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/coalescing-bal.rep -------------------------------------------------------------------------------- /traces/cp-decl-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/cp-decl-bal.rep -------------------------------------------------------------------------------- /traces/expr-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/expr-bal.rep -------------------------------------------------------------------------------- /traces/random-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/random-bal.rep -------------------------------------------------------------------------------- /traces/random2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/random2-bal.rep -------------------------------------------------------------------------------- /traces/realloc-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/realloc-bal.rep -------------------------------------------------------------------------------- /traces/realloc-bal.rep~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/realloc-bal.rep~ -------------------------------------------------------------------------------- /traces/realloc2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/realloc2-bal.rep -------------------------------------------------------------------------------- /traces/realloc2-bal.rep~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/realloc2-bal.rep~ -------------------------------------------------------------------------------- /traces/short1-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/short1-bal.rep -------------------------------------------------------------------------------- /traces/short2-bal.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/traces/short2-bal.rep -------------------------------------------------------------------------------- /writeup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/writeup.txt -------------------------------------------------------------------------------- /writeup.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarshTrivedi/malloc/HEAD/writeup.txt~ --------------------------------------------------------------------------------