$NetBSD: patch-ab,v 1.3 1998/08/07 10:40:22 agc Exp $ *** gc.man.orig Fri Nov 15 08:56:14 1996 --- gc.man Fri Nov 15 09:30:14 1996 *************** *** 9,15 **** ... malloc(...) ... .br .sp ! cc ... gc.a .LP .SH DESCRIPTION .I GC_malloc --- 9,17 ---- ... malloc(...) ... .br .sp ! cc ... -lgc ! .sp ! cc ... -lleak .LP .SH DESCRIPTION .I GC_malloc *************** *** 67,72 **** --- 69,116 ---- This may temporarily write protect pages in the heap. See the README file for more information on how this interacts with system calls that write to the heap. .LP Other facilities not discussed here include limited facilities to support incremental collection on machines without appropriate VM support, provisions for providing more explicit object layout information to the garbage collector, more direct support for ``weak'' pointers, support for ``abortable'' garbage collections during idle time, etc. + .LP + .SH "PORT INFORMATION" + .LP + In this (BSD package) installation, + .I gc.h + and + .I gc_cpp.h + will probably be found in + .I /usr/local/include, + and the libraries in + .I /usr/local/lib. + .LP + These libraries have been compiled as drop-in replacements + for malloc and free (which is to say, all malloc + calls will allocate garbage-collectable data). + There is no need to include "gc.h" in your C files unless you want + access to the debugging (and other) functions defined there, + or unless you want to explicitly use + .I GC_malloc_uncollectable + for some allocations. + Just link against them whenever you want either garbage + collection or leak detection. + .LP + The C++ header file, "gc_cpp.h", + .I is + necessary for C++ programs, to obtain the appropriate + definitions of the + .I new + and + .I delete + operators. + The comments in both of these header files presently + provide far better documentation + for the package than this man page; + look there for more information. + .LP + Both libraries are compiled without (explicit) support + for the experimental + .I gc + extension of + .I g++. + This may or may not make a difference. .LP .SH "SEE ALSO" The README and gc.h files in the distribution. More detailed definitions of the functions exported by the collector are given there. (The above list is not complete.)