[Lunar-commits] <moonbase> talloc: A hierarchical, reference counted memory pool system with destructors.
Florin Braescu
florin at lunar-linux.org
Sun Oct 10 13:11:03 CEST 2010
commit 3a9047f0998c12dc39ea4dcc01fb1ee9bbc2018b
Author: Florin Braescu <florin at lunar-linux.org>
Date: Sun Oct 10 14:11:03 2010 +0300
talloc: A hierarchical, reference counted memory pool system with destructors.
---
devel/talloc/DETAILS | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/devel/talloc/DETAILS b/devel/talloc/DETAILS
new file mode 100644
index 0000000..44b9ea3
--- /dev/null
+++ b/devel/talloc/DETAILS
@@ -0,0 +1,19 @@
+ MODULE=talloc
+ VERSION=2.0.1
+ SOURCE=$MODULE-$VERSION.tar.gz
+ SOURCE_URL=http://samba.org/ftp/$MODULE
+ SOURCE_VFY=sha1:40453d01e3676832150cefe0a057835d3a847ac1
+ WEB_SITE=http://talloc.samba.org/talloc/doc/html
+ ENTERED=20101010
+ UPDATED=20101010
+ SHORT="A hierarchical, reference counted memory pool system with destructors"
+
+cat << EOF
+talloc is a small wrapper around malloc that makes memory hierarchical. It is
+similar to a standard memory pool system, but much more powerful as any
+pointer returned by talloc is also a pool. This allows you to hang structures
+off other structures in an intuitive fashion, and free up a whole subtree of
+memory with one call. talloc also features type safety, destructors, and many
+helper functions.
+EOF
+
More information about the Lunar-commits
mailing list