update DESCR, no more libleak.

--
MAINTAINER ok
This commit is contained in:
brad 2003-05-10 21:06:15 +00:00
parent 11fd0c50d2
commit 910639f369

View File

@ -3,19 +3,11 @@ garbage collection and memory leak detection libraries.
A garbage collector is something which automatically frees malloc'd
memory for you by working out what parts of memory your program
no longer has pointers to. As a result, garbage collectors can also
no longer has pointers to. As a result, garbage collectors can also
inform you of memory leaks (if they find memory they can free, it means
you have lost all of your pointers to it, but you didn't free it).
This package has two libraries and some include files:
libgc.a - a garbage collection library, replaces malloc/free/new/delete/etc
with versions that do automatic garbage collection
libleak.a - a leak detection library, which is just libgc.a compiled with
different switches.
C programs may be linked against either of these, and should run (with
GC or leak detection) without change. C++ programs must include a header
to use garbage collection, though leak detection should work without
such source code modifications. See the man page and header files.
C programs should run without change. C++ programs must include a header
to use garbage collection. See the man page and header files.
WWW: ${HOMEPAGE}