
This library provides memory allocation tracing. You can
obtain basic stats about these traces by using the tool
util/processlog.pl.

USAGE:

  setenv LD_PRELOAD "$cwd/libmemlog.so:$cwd/../dlmalloc272/libdlmalloc.so:/usr/lib/libdl.so"

  (Linux)

or

  setenv LD_PRELOAD "$cwd/libmemlog.so:$cwd/../dlmalloc272/libdlmalloc.so:/usr/lib/libCrun.so.1"

  (Solaris)

The second library (dlmalloc272) is not actually needed on Linux; you just
need a malloc implementation that provides the function malloc_usable_size,
and as the default Linux library is a variant of the Doug Lea allocator
in dlmalloc272, everything will work fine.

