1: /*
2: * Text structure.
3: * One allocated per pure
4: * procedure on swap device.
5: * Manipulated by text.c
6: */
7: struct text
8: {
9: int x_daddr; /* disk address of segment */
10: int x_caddr; /* core address, if loaded */
11: int x_size; /* size (*64) */
12: int *x_iptr; /* inode of prototype */
13: char x_count; /* reference count */
14: char x_ccount; /* number of loaded references */
15: } text[NTEXT];
Defined variables
text
defined in line
15; used 2 times
Defined struct's
text
defined in line
7; used 2 times
Usage of this include