Coalescing (computer science): Difference between revisions

Content deleted Content added
Ruud Koot (talk | contribs)
{{comp-sci-stub}}
VanishedUserABC (talk | contribs)
No edit summary
Line 4:
<!-- End of AfD message, feel free to edit beyond this point -->
{{Orphan|date=February 2009}}
{{Rescue}}
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 [[Fragmentation (computer)|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), or it might not be done at all.