1: /*
   2:  * Copyright (c) 1986 Regents of the University of California.
   3:  * All rights reserved.  The Berkeley software License Agreement
   4:  * specifies the terms and conditions for redistribution.
   5:  *
   6:  *	@(#)clist.h	1.1 (2.10BSD Berkeley) 12/1/86
   7:  */
   8: 
   9: /*
  10:  * Raw structures for the character list routines.
  11:  */
  12: struct cblock {
  13:     struct cblock *c_next;
  14:     char    c_info[CBSIZE];
  15: };
  16: #if defined(KERNEL) && !defined(SUPERVISOR)
  17: #ifdef UCB_CLIST
  18: extern struct cblock *cfree;
  19: extern memaddr clststrt;
  20: extern u_int clstdesc;      /* PDR for clist segment when mapped */
  21:                 /* virt. addr. of clists (0120000 - 0140000) */
  22: #else
  23: extern struct cblock cfree[];
  24: #endif
  25: int nclist;
  26: struct  cblock *cfreelist;
  27: int cfreecount;
  28: #endif

Defined variables

cfreecount defined in line 27; used 17 times
cfreelist defined in line 26; used 40 times
nclist defined in line 25; used 8 times

Defined struct's

cblock defined in line 12; used 162 times

Usage of this include

Last modified: 1988-04-30
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2294
Valid CSS Valid XHTML 1.0 Strict