File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,20 +92,20 @@ typedef struct GenerationContext
9292 * GenerationBloc is the header data for a block --- the usable space
9393 * within the block begins at the next alignment boundary.
9494 */
95- typedef struct GenerationBlock
95+ struct GenerationBlock
9696{
9797 dlist_node node ; /* doubly-linked list */
9898 int nchunks ; /* number of chunks in the block */
9999 int nfree ; /* number of free chunks */
100100 char * freeptr ; /* start of free space in this block */
101101 char * endptr ; /* end of space in this block */
102- } GenerationBlock ;
102+ };
103103
104104/*
105105 * GenerationChunk
106106 * The prefix of each piece of memory in an GenerationBlock
107107 */
108- typedef struct GenerationChunk
108+ struct GenerationChunk
109109{
110110 /* block owning this chunk */
111111 void * block ;
@@ -120,7 +120,7 @@ typedef struct GenerationChunk
120120
121121 GenerationContext * context ; /* owning context */
122122 /* there must not be any padding to reach a MAXALIGN boundary here! */
123- } GenerationChunk ;
123+ };
124124
125125
126126/*
You can’t perform that action at this time.
0 commit comments