My favorites | Sign in
Google
Projects on Google Code Results 1 - 9 of 9
Design and implement a set of functions to manage a free store using a first fit strategy.
This garbage collector uses a mark-sweep algorithm . Unlike [http://www.hpl.hp.com/personal/Hans_Boehm/gc/ BDW conservative garbage collector] , it doesn't guess the pointer . So you should link the objects (memory block) manually by call *gc_link* . Namely , you should tell the collector that a mem...
This library provides variants of the C memory allocation routines (`malloc`, `calloc`, and `realloc`) that return pointers into memory which is guaranteed to not be swapped to the hard drive. Note: Currently, the library only works on Windows. [http://www.gnu.org/licenses/lgpl.html http://phy...
*csheap* is a customizable [http://en.wikipedia.org/wiki/Dynamic_memory_allocation dynamic memory allocator] written in C. It was originally written as a replacement for the standard libc malloc and the Windows runtime. csheap is simple, making it fast and less bug-prone. It can be customized at...
= Introduction = [http://cpp.winxgui.com/ StdExt] is a GUI-less library. [http://cpp.winxgui.com/ StdExt] means STL (Standard Template Library) extensions. Its wiki homepage is http://cpp.winxgui.com/. It extends STL and provides a set of classes for diagnosis, memory management, unit tests, file...
Memory pool allocator that help to improve memory allocation speed and memory usage by improving memory locality during data manipulation. To do so it require a little bit more help from the developper to tell him what kind of usage pattern the allocator must expect. It also include a static buff...
setu-allocator
Since SUNOS has presented slab allocation theroy, many OSs have changed their own memory allocator into slab. But it requires kernel-layer interfaces such as page supply etc. So this library improves slab's algorithm and brings the interfaces of slab into application layer: 1. fixed allocating-ti...
boost-memory