Design
memanage.asc
Associated article: A Simple Handle-Based Memory Manager
Tags: Parallel Design
_A SIMPLE HANDLE-BASED MEMORY MANAGER_
by David Betz
[LISTING ONE]
/* hmm.h - definitions for a simple handle based memory manager */
typedef char **HANDLE;
/* heap header structure */
typedef struct heaphdr {
int hh_nhandles; /* number of handles */
char *hh_next; /* next ...


