From 69fc6cfbbaddc316662f8de9843abfbff2fdbe2a Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Wed, 28 Feb 2018 00:35:19 +0300 Subject: [PATCH] Fix dbg_mlc.c/o file name in documentation * README.md (Debugging Facilities): Fix file name ("dbg_mlc.c"). * misc.c (GC_debugging_started): Fix file name ("dbg_mlc.o") in comment. --- README.md | 2 +- misc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 527161f..5cbe028 100644 --- a/README.md +++ b/README.md @@ -469,7 +469,7 @@ equivalents. (`GC_REGISTER_FINALIZER` is necessary, since pointers to objects with debugging information are really pointers to a displacement of 16 bytes form the object beginning, and some translation is necessary when finalization routines are invoked. For details, about what's stored -in the header, see the definition of the type oh in debug_malloc.c) +in the header, see the definition of the type oh in dbg_mlc.c file.) ## Incremental/Generational Collection diff --git a/misc.c b/misc.c index 2e76a21..e3ffe78 100644 --- a/misc.c +++ b/misc.c @@ -79,7 +79,7 @@ GC_FAR struct _GC_arrays GC_arrays /* = { 0 } */; GC_INNER GC_bool GC_debugging_started = FALSE; - /* defined here so we don't have to load debug_malloc.o */ + /* defined here so we don't have to load dbg_mlc.o */ ptr_t GC_stackbottom = 0; -- 2.7.4