From 0bf9ff99be80fa67f7ed547b6cdb5125430a8a64 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sat, 4 May 2013 00:21:20 +0400 Subject: [PATCH] Fix triple-letter typos in comments and documentation * ChangeLog: Fix triple-letter typos. * doc/overview.html: Likewise. * mark.c (GC_push_marked1): Fix a triple-letter typo in a comment. * os_dep.c (GC_register_data_segments): Likewise. --- ChangeLog | 4 ++-- doc/overview.html | 2 +- mark.c | 2 +- os_dep.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b2a241e2..bff5f7a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6607,7 +6607,7 @@ The latter is more reliable and easier on Linux with dl_iterate_phdr. * Integrated Bo Thorsen's X86-64 support. * STACKBOTTOM definition for LINUX/MIPS was partially changed back. * Replaced all occurrences of LINUX_DATA_START in gcconfig.h with -SEARCH_FOR_DATA_START. It doesn't hurt to falll back to a search. +SEARCH_FOR_DATA_START. It doesn't hurt to fall back to a search. And __data_start doesn't seem to get defined correctly of the GC library is loaded with LD_PRELOAD, e.g. for leak detection. * If the GC_find_leak environment variable is set, do a @@ -6863,7 +6863,7 @@ that combination anymore. * Added some support for OpenBSD/ELF/Linux. * Added Jakub Jelinek's patch to use dl_iterate_phdr for dynamic library traversal to dyn_load.c. Changed it to weakly reference dl_iterate_phdr, -so that the old code is stilll used with old versions of glibc. +so that the old code is still used with old versions of glibc. * Cleaned up feature test macros for various threads packages and integrated (partially functional) FreeBSD threads code from Loren Rittle. It's likely that the cleanup broke something, since it touched lots of diff --git a/doc/overview.html b/doc/overview.html index 8c562bf4..d0552522 100644 --- a/doc/overview.html +++ b/doc/overview.html @@ -245,7 +245,7 @@ HP Labs Technical Report HPL 2000-165. Discusses the parallel collection algorithms, and presents some performance results.

Boehm, H., "Bounding Space Usage of Conservative Garbage Collectors", -Proceeedings of the 2002 ACM SIGPLAN-SIGACT Symposium on Principles of +Proceedings of the 2002 ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, Jan. 2002, pp. 93-100. Official version. diff --git a/mark.c b/mark.c index 3d6ae75e..406c06c4 100644 --- a/mark.c +++ b/mark.c @@ -1571,7 +1571,7 @@ STATIC void GC_push_marked1(struct hblk *h, hdr *hhdr) word *q; word mark_word; - /* Allow registers to be used for some frequently acccessed */ + /* Allow registers to be used for some frequently accessed */ /* global variables. Otherwise aliasing issues are likely */ /* to prevent that. */ ptr_t greatest_ha = GC_greatest_plausible_heap_addr; diff --git a/os_dep.c b/os_dep.c index cb3ef43b..9fa401b5 100644 --- a/os_dep.c +++ b/os_dep.c @@ -1465,7 +1465,7 @@ void GC_register_data_segments(void) FILE * myexefile; struct exe_hdr hdrdos; /* MSDOS header. */ struct e32_exe hdr386; /* Real header for my executable */ - struct o32_obj seg; /* Currrent segment */ + struct o32_obj seg; /* Current segment */ int nsegs; if (DosGetInfoBlocks(&ptib, &ppib) != NO_ERROR) { -- 2.40.0