aboutsummaryrefslogtreecommitdiff
path: root/development/gc/README
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2013-10-15 22:47:02 -0500
committerRobby Workman <rworkman@slackbuilds.org>2013-10-29 23:31:42 -0500
commit50305917b6ad4cd872958b704e0248f472e33e0c (patch)
treead14b9614e6f0afe1a6f3594f0f530f73a8d9ea8 /development/gc/README
parent83bdd172bac4ec3e35663185ec367fc83a6d304c (diff)
development/gc: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/gc/README')
-rw-r--r--development/gc/README14
1 files changed, 0 insertions, 14 deletions
diff --git a/development/gc/README b/development/gc/README
deleted file mode 100644
index fc5ab50a46881..0000000000000
--- a/development/gc/README
+++ /dev/null
@@ -1,14 +0,0 @@
-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.
-
-libatomic_ops is an optional dependency, but gc will use an internal copy
-if it's not already installed on the system.