mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
Cleaning up fixmes. inststruct does not have a signature.
This commit is contained in:
parent
9fda23f4c6
commit
3f0496d325
2 changed files with 4 additions and 4 deletions
|
|
@ -83,7 +83,7 @@ typedef struct mps_pool_class_s {
|
|||
|
||||
typedef struct mps_pool_s { /* generic structure */
|
||||
InstStruct instStruct;
|
||||
Sig sig; /* design.mps.sig.field [FIXME: Why is this not at the end? RB 2023-03-09] */
|
||||
Sig sig; /* design.mps.sig.field */
|
||||
Serial serial; /* from arena->poolSerial */
|
||||
Arena arena; /* owning arena */
|
||||
RingStruct arenaRing; /* link in list of pools in arena */
|
||||
|
|
@ -218,7 +218,7 @@ typedef struct SegClassStruct {
|
|||
|
||||
typedef struct SegStruct { /* segment structure */
|
||||
InstStruct instStruct;
|
||||
Sig sig; /* design.mps.sig.field [FIXME: should be at end? RB 2023-03-09] */
|
||||
Sig sig; /* design.mps.sig.field */
|
||||
Tract firstTract; /* first tract of segment */
|
||||
RingStruct poolRing; /* link in list of segs in pool */
|
||||
Addr limit; /* limit of segment */
|
||||
|
|
@ -307,7 +307,7 @@ typedef struct BufferClassStruct {
|
|||
|
||||
typedef struct BufferStruct {
|
||||
InstStruct instStruct;
|
||||
Sig sig; /* design.mps.sig.field [FIXME: Why is this not at the end? RB 2023-03-09] */
|
||||
Sig sig; /* design.mps.sig.field */
|
||||
Serial serial; /* from pool->bufferSerial */
|
||||
Arena arena; /* owning arena */
|
||||
Pool pool; /* owning pool */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue