Egor Vagin
4 unresolved threads
84 141 return fst->is_free && snd->is_free && blocks_continuous( fst, snd ) ; 85 142 } 86 143 87 static bool try_merge_with_next( struct block_header* block ) { 88 /* ??? */ 144 static bool try_merge_with_next(struct block_header *block) { @412905 можно фиксить + мой комментарий из тг о том, что
qerry
в _malloc надо тоже выравнивать83 return; 84 } 58 85 86 87 while (current) { 88 struct block_header *next = current->next; 89 90 if (block_after(current) == next) { 91 size_t next_size = size_from_capacity(next->capacity).bytes; 92 current->next = next->next; 93 current->capacity.bytes += next_size; 94 continue; 95 } 96 97 98 munmap(current, current->capacity.bytes); 38 42 } 39 43 40 44 /* аллоцировать регион памяти и инициализировать его блоком */ 41 static struct region alloc_region ( void const * addr, size_t query ) { 42 /* ??? */ 45 static struct region alloc_region(void const *addr, size_t query) { 46 size_t actual_size = region_actual_size(query); 47 if (query == REGION_MIN_SIZE) { 48 actual_size += getpagesize(); 49 } @andrew код исправлен