Difference for mem/mem.c from version 1.3 to 1.4


version 1.3 version 1.4
Line 19
 
Line 19
  * Files for debugging memory allocator   * Files for debugging memory allocator
  *    *
  * $Log$   * $Log$
    * Revision 1.4  2000/02/07 07:31:08  donut
    * added memsize to printinfo (unfree'd blocks report)
    *
  * Revision 1.3  1999/10/15 05:22:15  donut   * Revision 1.3  1999/10/15 05:22:15  donut
  * typedef'd ssize_t on windows   * typedef'd ssize_t on windows
  *   *
Line 193
 
Line 196
   
 void PrintInfo( int id )  void PrintInfo( int id )
 {  {
  //edited 05/17/99 Matt Mueller - use pointer vars/formats instead of typecasting to int   //edited 05/17/99 Matt Mueller - use pointer vars/formats instead of typecasting to int -- edited 2000/02/06 Matt Mueller - added size to end.
  fprintf( stderr, "\tBlock '%s' created in %s, line %d at %p (sig %u).\n", Varname[id], Filename[id], Line[id], MallocBase[id], Signature[id] );   fprintf( stderr, "\tBlock '%s' created in %s, line %d at %p (sig %u), %i bytes.\n", Varname[id], Filename[id], Line[id], MallocBase[id], Signature[id], MallocSize[id] );
  //end edit -MM   //end edit -MM
 }  }
   

Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4