summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2013-08-25 12:37:19 +0400
committerIvan Maidanski <ivmai@mail.ru>2013-08-25 22:42:55 +0400
commit1255a3ed668beb5ed02321b52d666ead8dabf6f7 (patch)
tree17cacf6506bd0871c1419c1033efb45f4b14a2d4
parente6018f57838f85f75c092034678b60fef7d23f50 (diff)
downloadbdwgc-freebsd-ports-devel-boehm-gc-integrate.tar.gz
Remove changes in Makefile.in and doc/gc.man specific to FreeBSD portsfreebsd-ports-devel-boehm-gc-integrate
(Revert part of commit 8666ba2 from 'freebsd-ports-devel-boehm-gc' branch.) (Apply commit 8f8d395 from 'release-7_2' branch.) * doc/gc.man: Remove "PORT INFORMATION". Conflicts: Makefile.in
-rw-r--r--doc/gc.man44
1 files changed, 1 insertions, 43 deletions
diff --git a/doc/gc.man b/doc/gc.man
index 972fe82c..ef159289 100644
--- a/doc/gc.man
+++ b/doc/gc.man
@@ -11,7 +11,7 @@ void GC_free(void *ptr);
void * GC_realloc(void *ptr, size_t size);
.br
.sp
-cc ... -lgc
+cc ... gc.a
.LP
.SH DESCRIPTION
.I GC_malloc
@@ -88,48 +88,6 @@ This may temporarily write protect pages in the heap. See the README file for m
.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 (FreeBSD package) installation,
-.I gc.h
-and
-.I gc_cpp.h
-will probably be found in
-.I %%PREFIX%%/include,
-and the library in
-.I %%PREFIX%%/lib.
-.LP
-This library has 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
-This library is 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.)
.LP