mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
11 lines
513 B
Text
11 lines
513 B
Text
gc: Boehm-Demers-Weiser garbage collector
|
|
gc:
|
|
gc: The Boehm-Demers-Weiser conservative garbage collector can be used as a
|
|
gc: garbage collecting replacement for C malloc or C++ new. It allows you to
|
|
gc: allocate memory basically as you normally would, without explicitly
|
|
gc: deallocating memory that is no longer useful. The collector automatically
|
|
gc: recycles memory when it determines that it can no longer be otherwise
|
|
gc: accessed.
|
|
gc:
|
|
gc: Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
|
|
gc:
|