1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-21 03:52:16 -08:00

Change.epcore.brisling.160152.assignment.2

CBSBlockStruct goes, replacing with "pair of pointers" abstraction

Copied from Perforce
 Change: 20338
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gavin Matthews 1998-11-06 17:11:47 +00:00
parent 36db32c8f2
commit 4f32af3c53

View file

@ -1,6 +1,6 @@
/* impl.h.mpmst: MEMORY POOL MANAGER DATA STRUCTURES
*
* $HopeName: MMsrc!mpmst.h(trunk.72) $
* $HopeName: MMsrc!mpmst.h(trunk.73) $
* Copyright (C) 1998 Harlequin Group plc. All rights reserved.
*
* .readership: MM developers.
@ -757,8 +757,8 @@ typedef struct CBSStruct {
Bool mayUseInline;
Bool fastFind;
Bool inCBS; /* prevent reentrance */
struct CBSEmergencyBlockStruct *emergencyBlockList;
struct CBSEmergencyGrainStruct *emergencyGrainList;
void **emergencyBlockList;
void **emergencyGrainList;
Sig sig; /* sig at end because embeded */
} CBSStruct;