Update to malloc lab to remove realloc traces

At the request of more students the deadline is extended to Friday @ 4:00.


In addition I have removed the to final traces (that test realloc) that you will be graded against.  You should find that this improves your scores for your solutions.  To get this change you need to update config.h in your source code directory:


You can do this one of three ways:


1)


Replace config.h with http://www.cs.bu.edu/fac/jappavoo/Resources/210/malloclab/config.h


2

or you can edit config.h yourself:


define DEFAULT_TRACEFILES \

  "amptjp-bal.rep",\

  "cccp-bal.rep",\

  "cp-decl-bal.rep",\

  "expr-bal.rep",\

  "coalescing-bal.rep",\

  "random-bal.rep",\

  "random2-bal.rep",\

  "binary-bal.rep",\

  "binary2-bal.rep",\

  "realloc-bal.rep",\

  "realloc2-bal.rep"


delete the last to traces by changing the above too:


#define DEFAULT_TRACEFILES \

  "amptjp-bal.rep",\

  "cccp-bal.rep",\

  "cp-decl-bal.rep",\

  "expr-bal.rep",\

  "coalescing-bal.rep",\

  "random-bal.rep",\

  "random2-bal.rep",\

  "binary-bal.rep",\

  "binary2-bal.rep"


3) 

Alternatively the entire handout source at http://www.cs.bu.edu/fac/jappavoo/Resources/210/malloclab/malloclab-handout.tar has been updated appropriately. Be careful when you unpack this not to overwrite you mm.c file.