diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-12-19 16:24:39 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-12-19 16:24:39 -0800 |
commit | 95760fbe45a700ea4cc118daa536604393721a59 (patch) | |
tree | c344f95c78283e42caf2cefae05672566904f5aa | |
parent | b6f793d7d5c7f7c55911e6524dede41b92dcbc22 (diff) |
Restore comment deleted by b6f793d7d5
-rw-r--r-- | src/Type1/t1malloc.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Type1/t1malloc.c b/src/Type1/t1malloc.c index f421dda..3c8d521 100644 --- a/src/Type1/t1malloc.c +++ b/src/Type1/t1malloc.c @@ -43,7 +43,16 @@ routines (malloc/free). #endif #include <stdio.h> #include "objects.h" /* get #define for Abort() */ - + +/* +:h2.Data Structures Used to Manage Free Memory + +:h3.The "freeblock" Structure + +The list of available memory blocks is a doubly-linked list. Each +block begins with the following structure: +*/ + struct freeblock { long size; /* number of 'longs' in block, including this header */ |