summaryrefslogtreecommitdiffstats
path: root/development/gc/README
diff options
context:
space:
mode:
author Robby Workman2010-05-11 14:05:51 +0200
committer Eric Hameleers2010-05-11 14:05:51 +0200
commit0a4ab1d2f9c243c0517686f25e3b72d976389c36 (patch)
tree80e3e004d539230f19dea1dc1f88e418540a91b0 /development/gc/README
parent61e7763ae2a02320215395990ab0df57a9010308 (diff)
downloadslackbuilds-0a4ab1d2f9c243c0517686f25e3b72d976389c36.tar.gz
development/gc: Initial import
Diffstat (limited to 'development/gc/README')
-rw-r--r--development/gc/README12
1 files changed, 12 insertions, 0 deletions
diff --git a/development/gc/README b/development/gc/README
new file mode 100644
index 0000000000..4d1c6872e2
--- /dev/null
+++ b/development/gc/README
@@ -0,0 +1,12 @@
+The Boehm-Demers-Weiser conservative garbage collector can be used as a
+garbage collecting replacement for C malloc or C++ new. It allows you to
+allocate memory basically as you normally would, without explicitly
+deallocating memory that is no longer useful. The collector automatically
+recycles memory when it determines that it can no longer be otherwise
+accessed.
+
+The collector is also used by a number of programming language
+implementations that either use C as intermediate code, want to
+facilitate easier interoperation with C libraries, or just prefer
+the simple collector interface.
+