]> granicus.if.org Git - gc/commitdiff
Replace (fix) 'objs' acronym in comments with 'objects' word
authorIvan Maidanski <ivmai@mail.ru>
Fri, 1 Jul 2016 07:30:57 +0000 (10:30 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 29 Jul 2016 21:56:37 +0000 (00:56 +0300)
* include/gc.h (GC_PROTECTS_POINTER_HEAP): Replace "objs" word to
"objects" in comment.
* include/private/gc_priv.h (GC_arrays._aobjfreelist,
GC_arrays._uobjfreelist, GC_arrays._auobjfreelist, GC_aobjfreelist):
Likewise.
* mark.c (INITIAL_MARK_STACK_SIZE): Likewise.
* include/private/gc_priv.h (GC_arrays._uobjfreelist): Add missing dot
to delimit the end of a sentence in comment.

include/gc.h
include/private/gc_priv.h
mark.c

index 98186726d6f0a64ec9e659a3cb1fde75f5b639e0..b376a1be70735260018462de68406f35f12bf2f6 100644 (file)
@@ -720,7 +720,7 @@ GC_API void GC_CALL GC_enable_incremental(void);
 
 /* Does incremental mode write-protect pages?  Returns zero or  */
 /* more of the following, or'ed together:                       */
-#define GC_PROTECTS_POINTER_HEAP  1 /* May protect non-atomic objs.     */
+#define GC_PROTECTS_POINTER_HEAP  1 /* May protect non-atomic objects.  */
 #define GC_PROTECTS_PTRFREE_HEAP  2
 #define GC_PROTECTS_STATIC_DATA   4 /* Currently never.                 */
 #define GC_PROTECTS_STACK         8 /* Probably impractical.            */
index 93e0bd1d1dc9e6cc15eda16321ccc0694a436d19..380bbf3a7edc65bd84cfbaaf89dbf3ee3295b54a 100644 (file)
@@ -1151,17 +1151,17 @@ struct _GC_arrays {
                           /* free list for objects */
 #   define GC_aobjfreelist GC_arrays._aobjfreelist
     void *_aobjfreelist[MAXOBJGRANULES+1];
-                          /* free list for atomic objs  */
+                          /* free list for atomic objects       */
 # endif
   void *_uobjfreelist[MAXOBJGRANULES+1];
-                          /* Uncollectible but traced objs      */
-                          /* objects on this and auobjfreelist  */
+                          /* Uncollectible but traced objects.  */
+                          /* Objects on this and _auobjfreelist */
                           /* are always marked, except during   */
                           /* garbage collections.               */
 # ifdef ATOMIC_UNCOLLECTABLE
 #   define GC_auobjfreelist GC_arrays._auobjfreelist
     void *_auobjfreelist[MAXOBJGRANULES+1];
-                        /* Atomic uncollectible but traced objs */
+                /* Atomic uncollectible but traced objects.     */
 # endif
   word _composite_in_use; /* Number of bytes in the accessible  */
                           /* composite objects.                 */
@@ -1361,7 +1361,7 @@ GC_EXTERN struct obj_kind {
 # define endGC_objfreelist (beginGC_objfreelist + sizeof(GC_objfreelist))
 
   extern ptr_t GC_aobjfreelist[MAXOBJGRANULES+1];
-                          /* free list for atomic (PTRFREE) objs        */
+                          /* free list for atomic (PTRFREE) objects     */
 # define beginGC_aobjfreelist ((ptr_t)(&GC_aobjfreelist))
 # define endGC_aobjfreelist (beginGC_aobjfreelist + sizeof(GC_aobjfreelist))
 #endif /* SEPARATE_GLOBALS */
diff --git a/mark.c b/mark.c
index e23a79660bb4a469bccc01589a5572171d0aee35..9491932700921a8afe0a343eca9d0c254d308a92 100644 (file)
--- a/mark.c
+++ b/mark.c
@@ -93,7 +93,7 @@ GC_INNER unsigned GC_n_kinds = GC_N_KINDS_INITIAL_VALUE;
                 /* INITIAL_MARK_STACK_SIZE * sizeof(mse) should be a    */
                 /* multiple of HBLKSIZE.                                */
                 /* The incremental collector actually likes a larger    */
-                /* size, since it want to push all marked dirty objs    */
+                /* size, since it want to push all marked dirty objects */
                 /* before marking anything new.  Currently we let it    */
                 /* grow dynamically.                                    */
 # endif