Internet Terms Dictionary  

Main | About

 

Popular Searches

pixel fortran ajax
tube cpu storage
firewall bot protocol
iis server java
compiler socket isp
pop bus layer
hacker render foobar
web silicon platform
client blog network
router ram port
streaming domain table

Dictionaries

  • WordNet
  • Jargon File
  • Computing Dictionary
  • Moby Thesaurus

Created by
www.noamnet.com
 

Definitions for garbage collection:

WordNet (r) 2.0 :
garbage collection n : the collection and removal of garbage [syn: garbage pickup, trash collection, trash pickup]

The Free On-line Dictionary of Computing (27 SEP 03) :
garbage collection (GC) The process by which dynamically allocated storage is reclaimed during the execution of a program. The term usually refers to automatic periodic storage reclamation by the garbage collector (part of the {run-time system}), as opposed to explicit code to free specific blocks of memory. Automatic garbage collection is usually triggered during memory allocation when the amount free memory falls below some threshold or after a certain number of allocations. Normal execution is suspended and the garbage collector is run. There are many variations on this basic scheme. Languages like Lisp represent expressions as graphs built from cells which contain pointers and data. These languages use automatic dynamic storage allocation to build expressions. During the evaluation of an expression it is necessary to reclaim space which is used by subexpressions but which is no longer pointed to by anything. This reclaimed memory is returned to the free memory pool for subsequent reallocation. Without garbage collection the program's memory requirements would increase monotonically throughout execution, possibly exceeding system limits on virtual memory size. The three main methods are {mark-sweep garbage collection}, reference counting and copying garbage collection. See also the AI koan about garbage collection. (1997-08-25)

Related Sites

Escape analysis
In computer science, garbage collection (GC) is a form of automatic memory management. It is a special case of resource management, in which the limited resource being managed is memory. The garbage collector, or just...

Garbage Collection
The .NET Framework's garbage collector manages the allocation and release of memory for your application. ... Eventually the garbage collector must perform a collection in order ...

Garbage collection | C# Help C# Tutorials and Resources
The garbage collector must perform a collection in order to free some memory. ... When the garbage collector performs a collection, it checks for ...
 

dictionary.noamnet.com