FORM
4.1
|
#include <structs.h>
Data Fields | |
void * | lijst |
char * | message |
int | num |
int | maxnum |
int | size |
int | numglobal |
int | numtemp |
int | numclear |
Much information is stored in arrays of which we can double the size if the array proves to be too small. Such arrays are controled by a variable of type LIST. The routines that expand the lists are in the file tools.c
void* lijst |
[D] Holds space for "maxnum" elements of size "size" each
Definition at line 205 of file structs.h.
Referenced by InitRecovery().
char* message |
Text for Malloc1 when allocating lijst. Set to constant string.
Definition at line 206 of file structs.h.
Referenced by InitRecovery().
int num |
Number of elements in lijst.
Definition at line 207 of file structs.h.
Referenced by InitRecovery().
int maxnum |
Maximum number of elements in lijst.
Definition at line 208 of file structs.h.
Referenced by InitRecovery().
int size |
Size of one element in lijst.
Definition at line 209 of file structs.h.
Referenced by InitRecovery().
int numglobal |
Marker for position when .global is executed.
Definition at line 210 of file structs.h.
Referenced by InitRecovery().
int numtemp |
At the moment only needed for sets and setstore.
Definition at line 211 of file structs.h.
Referenced by InitRecovery().
int numclear |
Only for the clear instruction.
Definition at line 212 of file structs.h.
Referenced by InitRecovery().