diff options
author | Stanislav Sedov <stas@FreeBSD.org> | 2009-12-18 04:08:01 +0000 |
---|---|---|
committer | Stanislav Sedov <stas@FreeBSD.org> | 2009-12-18 04:08:01 +0000 |
commit | 3c4f18635e797c2c88ac9a2448c03cac8d8bca2d (patch) | |
tree | f22e1d2467845bdb4597598236e90df704d20c08 /devel/boehm-gc-threaded/pkg-descr | |
parent | 006d834cf51b82687d48e8ded28e85adca64353c (diff) |
Notes
Diffstat (limited to 'devel/boehm-gc-threaded/pkg-descr')
-rw-r--r-- | devel/boehm-gc-threaded/pkg-descr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/boehm-gc-threaded/pkg-descr b/devel/boehm-gc-threaded/pkg-descr new file mode 100644 index 000000000000..8c3345931da2 --- /dev/null +++ b/devel/boehm-gc-threaded/pkg-descr @@ -0,0 +1,20 @@ +The Boehm-Weiser garbage collection package, for C and C++ - +garbage collection and memory leak detection libraries. + +A garbage collector is something which automatically frees malloc'd +memory for you by working out what parts of memory your program +no longer has pointers to. As a result, garbage collectors can also +inform you of memory leaks (if they find memory they can free, it means +you have lost all of your pointers to it, but you didn't free it). + +C programs may be linked against either of these, and should run (with +GC or leak detection) without change. C++ programs must include a header +to use garbage collection, though leak detection should work without +such source code modifications. See the man page and header files. + +This package only brings Boehm-GC libraries with threading support. + +-- Mike McGaughey <mmcg@cs.monash.edu.au> +ps: garbage collection is addictive. + +WWW: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ |