Design
peterson.lst
Associated article: A Memory Allocation Compaction System
Tags: Parallel Design
_A MEMORY ALLOCATION COMPACTION SYSTEM_
by Steve Peterson
[LISTING ONE]
/**** mem.h data structures for memory manager
S. Peterson programmer 12/88
*/
typedef unsigned char byte;
typedef unsigned int uint;
/* This structure is the header of a memory block. It lies before
...


