Boehm Conservative Garbage Collection for C/C++ https://www.hboehm.info/gc/
Go to file
2024-01-06 04:19:33 +01:00
libgc-7.1-dup_cpp_headers.patch automatic update by autodist [release 7.4.0-1mamba;Tue Nov 26 2013] 2024-01-06 04:19:33 +01:00
libgc-7.2alpha4-install_dups.patch automatic update by autodist [release 7.4.0-1mamba;Tue Nov 26 2013] 2024-01-06 04:19:33 +01:00
libgc.spec automatic update by autodist [release 7.6.0-1mamba;Sun Sep 18 2016] 2024-01-06 04:19:33 +01:00
README.md automatic update by autodist [release 7.4.0-1mamba;Tue Nov 26 2013] 2024-01-06 04:19:33 +01:00

libgc

This is a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc.

Since the collector does not require pointers to be tagged, it does not attempt to ensure that all inaccessible storage is reclaimed. However, in our experience, it is typically more successful at reclaiming unused memory than most C programs using explicit deallocation. Unlike manually introduced leaks, the amount of unreclaimed memory typically stays bounded.