home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / 2014.11.minnie.tuhs.org.tar / minnie.tuhs.org / UnixArchive / PDP-11 / Trees / V6 / usr / sys / text.h < prev    next >
C/C++ Source or Header  |  1975-05-14  |  380b  |  16 lines

  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];
  16.