Coalescing (computer science)

This is an old revision of this page, as edited by 125.99.181.87 (talk) at 18:10, 24 November 2013. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer science, coalescing is the act of merging two adjacent free blocks of memory. When an application frees memory, gaps can fall in the memory segment that the application uses. Among other techniques, coalescing is used to reduce external fragmentation, but is not totally effective. Coalescing can be done as soon as blocks are freed, or it can be deferred until some time later (known as deferred coalescing). Armaan Monga

Coalescence and related techniques like heap compaction, can be used in garbage collection.

References