File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,20 +92,20 @@ typedef struct GenerationContext
92
92
* GenerationBloc is the header data for a block --- the usable space
93
93
* within the block begins at the next alignment boundary.
94
94
*/
95
- typedef struct GenerationBlock
95
+ struct GenerationBlock
96
96
{
97
97
dlist_node node ; /* doubly-linked list */
98
98
int nchunks ; /* number of chunks in the block */
99
99
int nfree ; /* number of free chunks */
100
100
char * freeptr ; /* start of free space in this block */
101
101
char * endptr ; /* end of space in this block */
102
- } GenerationBlock ;
102
+ };
103
103
104
104
/*
105
105
* GenerationChunk
106
106
* The prefix of each piece of memory in an GenerationBlock
107
107
*/
108
- typedef struct GenerationChunk
108
+ struct GenerationChunk
109
109
{
110
110
/* block owning this chunk */
111
111
void * block ;
@@ -120,7 +120,7 @@ typedef struct GenerationChunk
120
120
121
121
GenerationContext * context ; /* owning context */
122
122
/* there must not be any padding to reach a MAXALIGN boundary here! */
123
- } GenerationChunk ;
123
+ };
124
124
125
125
126
126
/*
You can’t perform that action at this time.
0 commit comments