From 9883c60dc6aa3416e06d746d9cfec2ce3263389b Mon Sep 17 00:00:00 2001 From: David Höppner Date: Sat, 19 Sep 2009 19:59:58 +0200 Subject: Boehm-Demers-Weiser garbage collector formula 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. Adam Vandenberg: Update bdw-gc formula for 10.6 --- Library/Formula/bdw-gc.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Library/Formula/bdw-gc.rb (limited to 'Library/Formula') diff --git a/Library/Formula/bdw-gc.rb b/Library/Formula/bdw-gc.rb new file mode 100644 index 000000000..027e2ac4d --- /dev/null +++ b/Library/Formula/bdw-gc.rb @@ -0,0 +1,21 @@ +require 'brewkit' + +class BdwGc