summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2008-12-19 16:24:39 -0800
committerAlan Coopersmith <alan.coopersmith@sun.com>2008-12-19 16:24:39 -0800
commit95760fbe45a700ea4cc118daa536604393721a59 (patch)
treec344f95c78283e42caf2cefae05672566904f5aa
parentb6f793d7d5c7f7c55911e6524dede41b92dcbc22 (diff)
Restore comment deleted by b6f793d7d5
-rw-r--r--src/Type1/t1malloc.c11
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 */