mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-31 13:52:29 +00:00
Reformat all C source files with Clang-format in Google style w/ 100 col width.
This commit is contained in:
471
src/gcrcell.c
Executable file → Normal file
471
src/gcrcell.c
Executable file → Normal file
@@ -1,10 +1,7 @@
|
||||
/* $Id: gcrcell.c,v 1.3 1999/05/31 23:35:32 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved */
|
||||
/* $Id: gcrcell.c,v 1.3 1999/05/31 23:35:32 sybalsky Exp $ (C) Copyright Venue, All Rights Reserved
|
||||
*/
|
||||
static char *id = "$Id: gcrcell.c,v 1.3 1999/05/31 23:35:32 sybalsky Exp $ Copyright (C) Venue";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/************************************************************************/
|
||||
/* */
|
||||
/* (C) Copyright 1989-95 Venue. All Rights Reserved. */
|
||||
@@ -17,10 +14,8 @@ static char *id = "$Id: gcrcell.c,v 1.3 1999/05/31 23:35:32 sybalsky Exp $ Copyr
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
|
||||
#include "version.h"
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/* */
|
||||
/* File Name : gcrcell.c */
|
||||
@@ -88,23 +83,24 @@ static char *id = "$Id: gcrcell.c,v 1.3 1999/05/31 23:35:32 sybalsky Exp $ Copyr
|
||||
|
||||
#ifdef NEWCDRCODING
|
||||
#undef CONSPAGE_LAST
|
||||
#define CONSPAGE_LAST 0x0ffffffff
|
||||
#define CONSPAGE_LAST 0x0ffffffff
|
||||
#else
|
||||
#undef CONSPAGE_LAST
|
||||
#define CONSPAGE_LAST 0x0ffff
|
||||
#define CONSPAGE_LAST 0x0ffff
|
||||
#endif /* NEWCDRCODING */
|
||||
|
||||
#define TODO_LIMIT 1000
|
||||
#define ADD_TO_DO(ptr,offset) \
|
||||
if (do_count < TODO_LIMIT) \
|
||||
{ \
|
||||
if (ptr & 0xF0000000) error("illegal ptr in addtodo"); \
|
||||
to_do[do_count] = (ptr); \
|
||||
to_do_offset[do_count] = offset; \
|
||||
todo_uses++; \
|
||||
/*REC_GCLOOKUP((ptr), ADDREF);*/ \
|
||||
do_count++; \
|
||||
} else { /* error("GC missing some to-do's"); */ todo_misses++; }
|
||||
#define ADD_TO_DO(ptr, offset) \
|
||||
if (do_count < TODO_LIMIT) { \
|
||||
if (ptr & 0xF0000000) error("illegal ptr in addtodo"); \
|
||||
to_do[do_count] = (ptr); \
|
||||
to_do_offset[do_count] = offset; \
|
||||
todo_uses++; \
|
||||
/*REC_GCLOOKUP((ptr), ADDREF);*/ \
|
||||
do_count++; \
|
||||
} else { /* error("GC missing some to-do's"); */ \
|
||||
todo_misses++; \
|
||||
}
|
||||
|
||||
unsigned todo_uses = 0;
|
||||
unsigned todo_misses = 0;
|
||||
@@ -120,216 +116,201 @@ void freelistcell(LispPTR cell);
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
LispPTR gcreccell(LispPTR cell)
|
||||
{
|
||||
register ConsCell *ptr;
|
||||
struct dtd *typdtd;
|
||||
DLword typ;
|
||||
register LispPTR tmpptr, donext, tmpcell, val;
|
||||
LispPTR ptrfield, carfield;
|
||||
int index, code;
|
||||
LispPTR *field;
|
||||
int freecnt;
|
||||
LispPTR freeptr;
|
||||
LispPTR gcreccell(LispPTR cell) {
|
||||
register ConsCell *ptr;
|
||||
struct dtd *typdtd;
|
||||
DLword typ;
|
||||
register LispPTR tmpptr, donext, tmpcell, val;
|
||||
LispPTR ptrfield, carfield;
|
||||
int index, code;
|
||||
LispPTR *field;
|
||||
int freecnt;
|
||||
LispPTR freeptr;
|
||||
|
||||
#ifdef NEWCDRCODING
|
||||
LispPTR to_do[TODO_LIMIT]; /* table of pointers to follow, since Cdr coding lost */
|
||||
short to_do_offset[TODO_LIMIT]; /* offset in datatype */
|
||||
unsigned do_count = 0; /* counter of entries in to_do table */
|
||||
#endif /* NEWCDRCODING */
|
||||
LispPTR to_do[TODO_LIMIT]; /* table of pointers to follow, since Cdr coding lost */
|
||||
short to_do_offset[TODO_LIMIT]; /* offset in datatype */
|
||||
unsigned do_count = 0; /* counter of entries in to_do table */
|
||||
#endif /* NEWCDRCODING */
|
||||
|
||||
val = NIL;
|
||||
tmpptr = cell;
|
||||
index = -1;
|
||||
donext = NIL;
|
||||
lp:
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr&-2);
|
||||
val = NIL;
|
||||
tmpptr = cell;
|
||||
index = -1;
|
||||
donext = NIL;
|
||||
lp:
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr & -2);
|
||||
/* # ifdef CHECK
|
||||
if (refcnt(tmpptr) != 1) error("reclaiming cell w/refcnt not 1");
|
||||
# endif
|
||||
*/
|
||||
#ifdef DEBUG
|
||||
if (tmpptr & 1) error("Reclaiming cell pointer with low bit 1.");
|
||||
if (tmpptr & 1) error("Reclaiming cell pointer with low bit 1.");
|
||||
#else
|
||||
tmpptr &= -2; /* turn off low bit of pointer, so we never reclaim odd'ns */
|
||||
tmpptr &= -2; /* turn off low bit of pointer, so we never reclaim odd'ns */
|
||||
#endif
|
||||
|
||||
if ((tmpptr & 0x0FFF0000) == 0x60000) error("freeing an old atom??");
|
||||
if ((tmpptr & 0x0FFF0000) == 0x60000) error("freeing an old atom??");
|
||||
|
||||
typ = GetTypeNumber(tmpptr);
|
||||
typ = GetTypeNumber(tmpptr);
|
||||
#ifdef DEBUG
|
||||
if (typ==6) printf("Reclaiming array ptr 0x%x.\n", tmpptr);
|
||||
if (typ == 6) printf("Reclaiming array ptr 0x%x.\n", tmpptr);
|
||||
#endif
|
||||
switch(typ)
|
||||
{
|
||||
case TYPE_LISTP:
|
||||
{
|
||||
if ((code = ptr->cdr_code) == CDR_INDIRECT) /* indirect */
|
||||
{ tmpcell = ptr->car_field; /* Monitor */
|
||||
freelistcell(tmpptr);
|
||||
ptr = (ConsCell *) Addr68k_from_LADDR(tmpcell);
|
||||
tmpptr = tmpcell;
|
||||
code = ptr->cdr_code;
|
||||
};
|
||||
if (index != -1) /* car part */
|
||||
index = -1;
|
||||
else
|
||||
{
|
||||
REC_GCLOOKUPV(car(tmpptr), DELREF, val);
|
||||
if (val != NIL)
|
||||
{
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = code;
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
};
|
||||
}
|
||||
REC_GCLOOKUPV(cdr(tmpptr), DELREF, val);
|
||||
if (code <= CDR_MAXINDIRECT)
|
||||
{
|
||||
#ifdef NEWCDRCODING
|
||||
tmpcell = tmpptr + ((code - CDR_INDIRECT) << 1);
|
||||
#else
|
||||
tmpcell = POINTER_PAGEBASE(tmpptr)
|
||||
+ ((code - CDR_INDIRECT) << 1);
|
||||
#endif /* NEWCDRCODING */
|
||||
freelistcell(tmpcell);
|
||||
};
|
||||
freelistcell(tmpptr);
|
||||
goto doval;
|
||||
};
|
||||
case TYPE_ARRAYBLOCK:
|
||||
if ((index == -1) && reclaimarrayblock(tmpptr))
|
||||
goto trynext;
|
||||
else break;
|
||||
case TYPE_STACKP:
|
||||
if ((index == -1) && reclaimstackp(tmpptr)) goto trynext;
|
||||
break;
|
||||
case TYPE_VMEMPAGEP:
|
||||
if ((index == -1) && releasingvmempage(tmpptr))
|
||||
{
|
||||
goto trynext;
|
||||
}
|
||||
else break;
|
||||
case TYPE_CODEHUNK1:
|
||||
case TYPE_CODEHUNK2:
|
||||
case TYPE_CODEHUNK3:
|
||||
case TYPE_CODEHUNK4:
|
||||
case TYPE_CODEHUNK5:
|
||||
case TYPE_CODEHUNK6:
|
||||
case TYPE_CODEHUNK7:
|
||||
case TYPE_CODEHUNK8:
|
||||
case TYPE_CODEHUNK9:
|
||||
case TYPE_CODEHUNK10:
|
||||
if ((index == -1) && reclaimcodeblock(tmpptr)) goto trynext;
|
||||
else break;
|
||||
default: ;
|
||||
};
|
||||
normal:
|
||||
typdtd = (struct dtd *)GetDTD(typ);
|
||||
ptrfield = typdtd->dtd_ptrs;
|
||||
if (index != -1)
|
||||
switch (typ) {
|
||||
case TYPE_LISTP: {
|
||||
if ((code = ptr->cdr_code) == CDR_INDIRECT) /* indirect */
|
||||
{
|
||||
index = (index << 1);
|
||||
ptrfield = cdr(ptrfield);
|
||||
while ((car(ptrfield) & 0x0ffff) != index) ptrfield = cdr(ptrfield);
|
||||
index = -1;
|
||||
};
|
||||
while(ptrfield != NIL)
|
||||
{
|
||||
carfield = car(ptrfield);
|
||||
ptrfield = cdr(ptrfield);
|
||||
carfield &= 0x0ffff;
|
||||
REC_GCLOOKUPV((POINTERMASK &
|
||||
*(LispPTR *)Addr68k_from_LADDR(tmpptr+carfield)),
|
||||
DELREF, val);
|
||||
#ifndef NEWCDRCODING
|
||||
if (val != NIL)
|
||||
{
|
||||
if (ptrfield != NIL)
|
||||
{
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = ((car(ptrfield) & 0x0ffff) >> 1);
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
}
|
||||
else goto addtofreelist;
|
||||
};
|
||||
#else
|
||||
if (val != NIL)
|
||||
{
|
||||
if (ptrfield != NIL)
|
||||
{
|
||||
if ((carfield = car(ptrfield) & 0x0ffff) >> 1 < 15)
|
||||
{
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = ((car(ptrfield) & 0x0ffff) >> 1);
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
}
|
||||
else
|
||||
{ ADD_TO_DO(tmpptr, (car(ptrfield) & 0xffff)>>1); goto doval; }
|
||||
}
|
||||
else goto addtofreelist;
|
||||
};
|
||||
#endif /* NEWCDRCODING */
|
||||
tmpcell = ptr->car_field; /* Monitor */
|
||||
freelistcell(tmpptr);
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpcell);
|
||||
tmpptr = tmpcell;
|
||||
code = ptr->cdr_code;
|
||||
};
|
||||
addtofreelist:
|
||||
field = (LispPTR *)Addr68k_from_LADDR(tmpptr);
|
||||
*field = typdtd->dtd_free;
|
||||
typdtd->dtd_free = tmpptr & POINTERMASK;
|
||||
#ifdef DTDDEBUG
|
||||
check_dtd_chain(GetTypeNumber(tmpptr & POINTERMASK));
|
||||
#endif
|
||||
|
||||
/******************************/
|
||||
/* */
|
||||
/* Freeing one cell made another cell's refcnt = 0. */
|
||||
/* ADDREF the second cell (to remove it from the GC table) */
|
||||
/* and reclaim it. */
|
||||
/************************************************************/
|
||||
doval:
|
||||
if (val != NIL)
|
||||
{
|
||||
tmpptr = val;
|
||||
REC_GCLOOKUP(tmpptr, ADDREF);
|
||||
/* GCLOOKUP(0x8000, ADDREF,tmpptr); */
|
||||
val = NIL;
|
||||
goto lp;
|
||||
};
|
||||
|
||||
/***************************************************************/
|
||||
/* */
|
||||
/* Finished freeing the main cell, but we may have saved other */
|
||||
/* cells whose refcnt's went to 0 along the way. This is */
|
||||
/* where we work down the list of saved items to free. */
|
||||
/* */
|
||||
/****************************************************************/
|
||||
trynext:
|
||||
if (donext != NIL)
|
||||
{
|
||||
tmpptr = donext;
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
donext = (LispPTR)ptr->car_field;
|
||||
index = ptr->cdr_code;
|
||||
goto lp;
|
||||
};
|
||||
#ifdef NEWCDRCODING
|
||||
if (do_count) /* If there are other cells to collect */
|
||||
{
|
||||
do_count--;
|
||||
tmpptr = to_do[do_count];
|
||||
index = to_do_offset[do_count];
|
||||
todo_reads++;
|
||||
/*REC_GCLOOKUP(tmpptr, ADDREF); */
|
||||
goto lp;
|
||||
if (index != -1) /* car part */
|
||||
index = -1;
|
||||
else {
|
||||
REC_GCLOOKUPV(car(tmpptr), DELREF, val);
|
||||
if (val != NIL) {
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = code;
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
};
|
||||
}
|
||||
#endif /*NEWCDRCODING */
|
||||
return(NIL);
|
||||
}
|
||||
REC_GCLOOKUPV(cdr(tmpptr), DELREF, val);
|
||||
if (code <= CDR_MAXINDIRECT) {
|
||||
#ifdef NEWCDRCODING
|
||||
tmpcell = tmpptr + ((code - CDR_INDIRECT) << 1);
|
||||
#else
|
||||
tmpcell = POINTER_PAGEBASE(tmpptr) + ((code - CDR_INDIRECT) << 1);
|
||||
#endif /* NEWCDRCODING */
|
||||
freelistcell(tmpcell);
|
||||
};
|
||||
freelistcell(tmpptr);
|
||||
goto doval;
|
||||
};
|
||||
case TYPE_ARRAYBLOCK:
|
||||
if ((index == -1) && reclaimarrayblock(tmpptr))
|
||||
goto trynext;
|
||||
else
|
||||
break;
|
||||
case TYPE_STACKP:
|
||||
if ((index == -1) && reclaimstackp(tmpptr)) goto trynext;
|
||||
break;
|
||||
case TYPE_VMEMPAGEP:
|
||||
if ((index == -1) && releasingvmempage(tmpptr)) {
|
||||
goto trynext;
|
||||
} else
|
||||
break;
|
||||
case TYPE_CODEHUNK1:
|
||||
case TYPE_CODEHUNK2:
|
||||
case TYPE_CODEHUNK3:
|
||||
case TYPE_CODEHUNK4:
|
||||
case TYPE_CODEHUNK5:
|
||||
case TYPE_CODEHUNK6:
|
||||
case TYPE_CODEHUNK7:
|
||||
case TYPE_CODEHUNK8:
|
||||
case TYPE_CODEHUNK9:
|
||||
case TYPE_CODEHUNK10:
|
||||
if ((index == -1) && reclaimcodeblock(tmpptr))
|
||||
goto trynext;
|
||||
else
|
||||
break;
|
||||
default:;
|
||||
};
|
||||
normal:
|
||||
typdtd = (struct dtd *)GetDTD(typ);
|
||||
ptrfield = typdtd->dtd_ptrs;
|
||||
if (index != -1) {
|
||||
index = (index << 1);
|
||||
ptrfield = cdr(ptrfield);
|
||||
while ((car(ptrfield) & 0x0ffff) != index) ptrfield = cdr(ptrfield);
|
||||
index = -1;
|
||||
};
|
||||
while (ptrfield != NIL) {
|
||||
carfield = car(ptrfield);
|
||||
ptrfield = cdr(ptrfield);
|
||||
carfield &= 0x0ffff;
|
||||
REC_GCLOOKUPV((POINTERMASK & *(LispPTR *)Addr68k_from_LADDR(tmpptr + carfield)), DELREF, val);
|
||||
#ifndef NEWCDRCODING
|
||||
if (val != NIL) {
|
||||
if (ptrfield != NIL) {
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = ((car(ptrfield) & 0x0ffff) >> 1);
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
} else
|
||||
goto addtofreelist;
|
||||
};
|
||||
#else
|
||||
if (val != NIL) {
|
||||
if (ptrfield != NIL) {
|
||||
if ((carfield = car(ptrfield) & 0x0ffff) >> 1 < 15) {
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
ptr->car_field = donext;
|
||||
ptr->cdr_code = ((car(ptrfield) & 0x0ffff) >> 1);
|
||||
donext = tmpptr;
|
||||
goto doval;
|
||||
} else {
|
||||
ADD_TO_DO(tmpptr, (car(ptrfield) & 0xffff) >> 1);
|
||||
goto doval;
|
||||
}
|
||||
} else
|
||||
goto addtofreelist;
|
||||
};
|
||||
#endif /* NEWCDRCODING */
|
||||
};
|
||||
addtofreelist:
|
||||
field = (LispPTR *)Addr68k_from_LADDR(tmpptr);
|
||||
*field = typdtd->dtd_free;
|
||||
typdtd->dtd_free = tmpptr & POINTERMASK;
|
||||
#ifdef DTDDEBUG
|
||||
check_dtd_chain(GetTypeNumber(tmpptr & POINTERMASK));
|
||||
#endif
|
||||
|
||||
/******************************/
|
||||
/* */
|
||||
/* Freeing one cell made another cell's refcnt = 0. */
|
||||
/* ADDREF the second cell (to remove it from the GC table) */
|
||||
/* and reclaim it. */
|
||||
/************************************************************/
|
||||
doval:
|
||||
if (val != NIL) {
|
||||
tmpptr = val;
|
||||
REC_GCLOOKUP(tmpptr, ADDREF);
|
||||
/* GCLOOKUP(0x8000, ADDREF,tmpptr); */
|
||||
val = NIL;
|
||||
goto lp;
|
||||
};
|
||||
|
||||
/***************************************************************/
|
||||
/* */
|
||||
/* Finished freeing the main cell, but we may have saved other */
|
||||
/* cells whose refcnt's went to 0 along the way. This is */
|
||||
/* where we work down the list of saved items to free. */
|
||||
/* */
|
||||
/****************************************************************/
|
||||
trynext:
|
||||
if (donext != NIL) {
|
||||
tmpptr = donext;
|
||||
ptr = (ConsCell *)Addr68k_from_LADDR(tmpptr);
|
||||
donext = (LispPTR)ptr->car_field;
|
||||
index = ptr->cdr_code;
|
||||
goto lp;
|
||||
};
|
||||
#ifdef NEWCDRCODING
|
||||
if (do_count) /* If there are other cells to collect */
|
||||
{
|
||||
do_count--;
|
||||
tmpptr = to_do[do_count];
|
||||
index = to_do_offset[do_count];
|
||||
todo_reads++;
|
||||
/*REC_GCLOOKUP(tmpptr, ADDREF); */
|
||||
goto lp;
|
||||
}
|
||||
#endif /*NEWCDRCODING */
|
||||
return (NIL);
|
||||
}
|
||||
|
||||
/************************************************************************/
|
||||
/* */
|
||||
@@ -339,53 +320,47 @@ LispPTR gcreccell(LispPTR cell)
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
void freelistcell(LispPTR cell)
|
||||
{
|
||||
struct conspage *pbase;
|
||||
register ConsCell *cell68k;
|
||||
unsigned int offset, prior, celloffset;
|
||||
void freelistcell(LispPTR cell) {
|
||||
struct conspage *pbase;
|
||||
register ConsCell *cell68k;
|
||||
unsigned int offset, prior, celloffset;
|
||||
|
||||
cell68k = (ConsCell *)Addr68k_from_LADDR(cell);
|
||||
pbase = (struct conspage *)Addr68k_from_LPAGE(POINTER_PAGE(cell));
|
||||
celloffset = (LispPTR)cell & 0xFF;
|
||||
cell68k = (ConsCell *)Addr68k_from_LADDR(cell);
|
||||
pbase = (struct conspage *)Addr68k_from_LPAGE(POINTER_PAGE(cell));
|
||||
celloffset = (LispPTR)cell & 0xFF;
|
||||
#ifdef NEWCDRCODING
|
||||
if (celloffset < 8)
|
||||
error("freeing CONS cell that's really freelist ptr");
|
||||
if (celloffset < 8) error("freeing CONS cell that's really freelist ptr");
|
||||
#endif /* NEWCDRCODING */
|
||||
|
||||
if (pbase->count) /* There are free cells on the page already */
|
||||
{
|
||||
if (pbase->count) /* There are free cells on the page already */
|
||||
{
|
||||
prior = 0;
|
||||
|
||||
for (offset = pbase->next_cell; offset;
|
||||
offset = FREECONS(pbase,offset) -> next_free)
|
||||
{
|
||||
for (offset = pbase->next_cell; offset; offset = FREECONS(pbase, offset)->next_free) {
|
||||
#ifdef NEWCDRCODING
|
||||
if ((6^offset) < (6^celloffset))
|
||||
if ((6 ^ offset) < (6 ^ celloffset))
|
||||
#else
|
||||
if (offset < celloffset)
|
||||
if (offset < celloffset)
|
||||
#endif /* NEWCDRCODING */
|
||||
{
|
||||
break;
|
||||
}
|
||||
prior = offset;
|
||||
}
|
||||
|
||||
if (prior) FREECONS(pbase, prior)->next_free = celloffset;
|
||||
else pbase->next_cell = celloffset;
|
||||
((freecons *)cell68k) -> next_free = offset;
|
||||
}
|
||||
else /* NO FREE CELLS. Just replace next_free. */
|
||||
{
|
||||
pbase->next_cell = celloffset;
|
||||
FREECONS(pbase,celloffset)->next_free = 0; /* And this is end of the chain */
|
||||
}
|
||||
|
||||
if ((++pbase->count > 32) && (pbase->next_page == CONSPAGE_LAST))
|
||||
{
|
||||
pbase->next_page = ListpDTD->dtd_nextpage;
|
||||
ListpDTD->dtd_nextpage = POINTER_PAGE(cell);
|
||||
};
|
||||
break;
|
||||
}
|
||||
prior = offset;
|
||||
}
|
||||
|
||||
if (prior)
|
||||
FREECONS(pbase, prior)->next_free = celloffset;
|
||||
else
|
||||
pbase->next_cell = celloffset;
|
||||
((freecons *)cell68k)->next_free = offset;
|
||||
} else /* NO FREE CELLS. Just replace next_free. */
|
||||
{
|
||||
pbase->next_cell = celloffset;
|
||||
FREECONS(pbase, celloffset)->next_free = 0; /* And this is end of the chain */
|
||||
}
|
||||
|
||||
if ((++pbase->count > 32) && (pbase->next_page == CONSPAGE_LAST)) {
|
||||
pbase->next_page = ListpDTD->dtd_nextpage;
|
||||
ListpDTD->dtd_nextpage = POINTER_PAGE(cell);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user