@@ -1680,7 +1680,7 @@ static FORCEINLINE void* win32direct_mmap(size_t size) {
16801680 return (ptr != 0 )? ptr : MFAIL ;
16811681}
16821682
1683- /* This function supports releasing coalesed segments */
1683+ /* This function supports releasing coalesced segments */
16841684static FORCEINLINE int win32munmap (void * ptr , size_t size ) {
16851685 MEMORY_BASIC_INFORMATION minfo ;
16861686 char * cptr = (char * )ptr ;
@@ -1768,7 +1768,7 @@ static FORCEINLINE int win32munmap(void* ptr, size_t size) {
17681768 #define CALL_MREMAP (addr , osz , nsz , mv ) MFAIL
17691769#endif /* HAVE_MMAP && HAVE_MREMAP */
17701770
1771- /* mstate bit set if continguous morecore disabled or failed */
1771+ /* mstate bit set if contiguous morecore disabled or failed */
17721772#define USE_NONCONTIGUOUS_BIT (4U)
17731773
17741774/* segment bit set in create_mspace_with_base */
@@ -4682,7 +4682,7 @@ void* dlmalloc(size_t bytes) {
46824682
46834683void dlfree (void * mem ) {
46844684 /*
4685- Consolidate freed chunks with preceeding or succeeding bordering
4685+ Consolidate freed chunks with preceding or succeeding bordering
46864686 free chunks, if they exist, and then place in a bin. Intermixed
46874687 with special cases for top, dv, mmapped chunks, and usage errors.
46884688 */
@@ -6216,10 +6216,10 @@ int mspace_mallopt(int param_number, int value) {
62166216 Wolfram Gloger (Gloger@lrz.uni-muenchen.de).
62176217 * Use last_remainder in more cases.
62186218 * Pack bins using idea from colin@nyx10.cs.du.edu
6219- * Use ordered bins instead of best-fit threshhold
6219+ * Use ordered bins instead of best-fit threshold
62206220 * Eliminate block-local decls to simplify tracing and debugging.
62216221 * Support another case of realloc via move into top
6222- * Fix error occuring when initial sbrk_base not word-aligned.
6222+ * Fix error occurring when initial sbrk_base not word-aligned.
62236223 * Rely on page size for units instead of SBRK_UNIT to
62246224 avoid surprises about sbrk alignment conventions.
62256225 * Add mallinfo, mallopt. Thanks to Raymond Nijssen
0 commit comments