diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/alloc-override-osx.c | 2 | ||||
-rw-r--r-- | src/alloc-override-win.c | 2 | ||||
-rw-r--r-- | src/page-queue.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/alloc-override-osx.c b/src/alloc-override-osx.c index 31fdc32..83211d3 100644 --- a/src/alloc-override-osx.c +++ b/src/alloc-override-osx.c @@ -201,7 +201,7 @@ static void __attribute__((constructor)) _mi_macosx_override_malloc() zone.pressure_relief = &zone_pressure_relief; intro.zone_locked = &intro_zone_locked; - // force the purgable zone to exist to avoid strange bugs + // force the purgeable zone to exist to avoid strange bugs if (malloc_default_purgeable_zone) { purgeable_zone = malloc_default_purgeable_zone(); } diff --git a/src/alloc-override-win.c b/src/alloc-override-win.c index 3e0caf2..fc50777 100644 --- a/src/alloc-override-win.c +++ b/src/alloc-override-win.c @@ -34,7 +34,7 @@ by us is freed after we unpatched. There are two tricky situations to deal with: -1. The Thread Local Storage (TLS): when the main thead stops it will call registered +1. The Thread Local Storage (TLS): when the main thread stops it will call registered callbacks on TLS entries (allocated by `FlsAlloc`). This is done by the OS before any DLL's are unloaded. Unfortunately, the C runtime registers such TLS entries with CRT allocated memory which is freed in the callback. diff --git a/src/page-queue.c b/src/page-queue.c index a879a31..fdd5b01 100644 --- a/src/page-queue.c +++ b/src/page-queue.c @@ -18,13 +18,13 @@ terms of the MIT license. A copy of the license can be found in the file ----------------------------------------------------------- */ #if (MI_MAX_ALIGN_SIZE > 4*MI_INTPTR_SIZE) - #error "define aligment for more than 4x word size for this platform" + #error "define alignment for more than 4x word size for this platform" #elif (MI_MAX_ALIGN_SIZE > 2*MI_INTPTR_SIZE) #define MI_ALIGN4W // 4 machine words minimal alignment #elif (MI_MAX_ALIGN_SIZE > MI_INTPTR_SIZE) #define MI_ALIGN2W // 2 machine words minimal alignment #else - // ok, default aligment is 1 word + // ok, default alignment is 1 word #endif |