]> granicus.if.org Git - gc/commitdiff
Reformat gc.man (wrap long lines)
authorIvan Maidanski <ivmai@mail.ru>
Tue, 26 Mar 2019 06:27:22 +0000 (09:27 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 26 Mar 2019 06:30:14 +0000 (09:30 +0300)
* doc/gc.man: Wrap lines longer than 78 characters.

doc/gc.man

index dd3da022a47e2cc26cc997bd3b0b0237194c20f8..640bd511ce577c4a3d50b77ee072dfe5afb03b02 100644 (file)
@@ -1,6 +1,9 @@
 .TH BDWGC 3 "26 Mar 2019"
 .SH NAME
-GC_malloc, GC_malloc_atomic, GC_free, GC_realloc, GC_enable_incremental, GC_register_finalizer, GC_malloc_ignore_off_page, GC_malloc_atomic_ignore_off_page, GC_set_warn_proc \- Garbage collecting malloc replacement
+GC_malloc, GC_malloc_atomic, GC_free, GC_realloc, GC_enable_incremental,
+GC_register_finalizer, GC_malloc_ignore_off_page,
+GC_malloc_atomic_ignore_off_page, GC_set_warn_proc \- Garbage collecting
+malloc replacement
 .SH SYNOPSIS
 #include <gc.h>
 .br
@@ -12,7 +15,7 @@ void GC_free(void *ptr);
 .br
 void * GC_realloc(void *ptr, size_t size);
 .br
-void GC_enable_incremental();
+void GC_enable_incremental(void);
 .br
 void * GC_malloc_ignore_off_page(size_t size);
 .br
@@ -30,7 +33,12 @@ and
 are plug-in replacements for standard malloc and free.  However,
 .I
 GC_malloc
-will attempt to reclaim inaccessible space automatically by invoking a conservative garbage collector at appropriate points.  The collector traverses all data structures accessible by following pointers from the machines registers, stack(s), data, and bss segments.  Inaccessible structures will be reclaimed.  A machine word is considered to be a valid pointer if it is an address inside an object allocated by
+will attempt to reclaim inaccessible space automatically by invoking
+a conservative garbage collector at appropriate points.  The collector
+traverses all data structures accessible by following pointers from the
+machines registers, stack(s), data, and bss segments.  Inaccessible structures
+will be reclaimed.  A machine word is considered to be a valid pointer if
+it is an address inside an object allocated by
 .I
 GC_malloc
 or friends.
@@ -54,30 +62,49 @@ GC_malloc
 clears the newly allocated storage.
 .I
 GC_malloc_atomic
-does not.  Furthermore, it informs the collector that the resulting object will never contain any pointers, and should therefore not be scanned by the collector.
+does not.  Furthermore, it informs the collector that the resulting object
+will never contain any pointers, and should therefore not be scanned by the
+collector.
 .LP
 .I
 GC_free
-can be used to deallocate objects, but its use is optional, and generally discouraged.
+can be used to deallocate objects, but its use is optional, and generally
+discouraged.
 .I
 GC_realloc
 has the standard realloc semantics.  It preserves pointer-free-ness.
 .I
 GC_register_finalizer
-allows for registration of functions that are invoked when an object becomes inaccessible.
+allows for registration of functions that are invoked when an object becomes
+inaccessible.
 .LP
-The garbage collector tries to avoid allocating memory at locations that already appear to be referenced before allocation.  (Such apparent ``pointers'' are usually large integers and the like that just happen to look like an address.)  This may make it hard to allocate very large objects.  An attempt to do so may generate a warning.
+The garbage collector tries to avoid allocating memory at locations that
+already appear to be referenced before allocation.  (Such apparent
+``pointers'' are usually large integers and the like that just happen to look
+like an address.)  This may make it hard to allocate very large objects.
+An attempt to do so may generate a warning.
 .LP
 .I
 GC_malloc_ignore_off_page
 and
 .I
 GC_malloc_atomic_ignore_off_page
-inform the collector that the client code will always maintain a pointer to near the beginning of the object (within the first 512 bytes), and that pointers beyond that can be ignored by the collector.  This makes it much easier for the collector to place large objects.  These are recommended for large object allocation.  (Objects expected to be > ~100 KB should be allocated this way.)
-.LP
-It is also possible to use the collector to find storage leaks in programs destined to be run with standard malloc/free.  The collector can be compiled for thread-safe operation.  Unlike standard malloc, it is safe to call malloc after a previous malloc call was interrupted by a signal, provided the original malloc call is not resumed.
-.LP
-The collector may, on rare occasion, produce warning messages.  On UNIX machines these appear on stderr.  Warning messages can be filtered, redirected, or ignored with
+inform the collector that the client code will always maintain a pointer to
+near the beginning of the object (within the first 512 bytes), and that
+pointers beyond that can be ignored by the collector.  This makes it much
+easier for the collector to place large objects.  These are recommended for
+large object allocation.  (Objects expected to be > ~100 KB should be
+allocated this way.)
+.LP
+It is also possible to use the collector to find storage leaks in programs
+destined to be run with standard malloc/free.  The collector can be compiled
+for thread-safe operation.  Unlike standard malloc, it is safe to call malloc
+after a previous malloc call was interrupted by a signal, provided the
+original malloc call is not resumed.
+.LP
+The collector may, on rare occasion, produce warning messages.  On UNIX
+machines these appear on stderr.  Warning messages can be filtered,
+redirected, or ignored with
 .I
 GC_set_warn_proc
 This is recommended for production code.  See gc.h for details.
@@ -85,21 +112,35 @@ This is recommended for production code.  See gc.h for details.
 Fully portable code should call
 .I
 GC_INIT
-from the primordial thread of the main program before making any other GC calls.
-On most platforms this does nothing and the collector is initialized on first use.
-On a few platforms explicit initialization is necessary.  And it can never hurt.
-.LP
-Debugging versions of many of the above routines are provided as macros.  Their names are identical to the above, but consist of all capital letters.  If GC_DEBUG is defined before gc.h is included, these routines do additional checking, and allow the leak detecting version of the collector to produce slightly more useful output.  Without GC_DEBUG defined, they behave exactly like the lower-case versions.
+from the primordial thread of the main program before making any other
+GC calls.  On most platforms this does nothing and the collector is
+initialized on first use.  On a few platforms explicit initialization is
+necessary.  And it can never hurt.
+.LP
+Debugging versions of many of the above routines are provided as macros.
+Their names are identical to the above, but consist of all capital letters.
+If GC_DEBUG is defined before gc.h is included, these routines do additional
+checking, and allow the leak detecting version of the collector to produce
+slightly more useful output.  Without GC_DEBUG defined, they behave exactly
+like the lower-case versions.
 .LP
 On some machines, collection will be performed incrementally after a call to
 .I
 GC_enable_incremental.
-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.
+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.
+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 "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.)
+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
 The web site at http://www.hboehm.info/gc/ (or https://github.com/ivmai/bdwgc/).
 .LP
@@ -110,4 +151,5 @@ The malloc(3) man page.
 .LP
 .SH AUTHOR
 Hans-J. Boehm (boehm@acm.org).
-Some of the code was written by others (see the AUTHORS file for the details), most notably by Alan Demers, and, recently, Ivan Maidanski.
+Some of the code was written by others (see the AUTHORS file for the details),
+most notably by Alan Demers, and, recently, Ivan Maidanski.