home *** CD-ROM | disk | FTP | other *** search
- /*
- * $Header: /ax/networking:include/sys/clist.h:networking 1.1 $
- * $Source: /ax/networking:include/sys/clist.h: $
- *
- * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
- *
- * $Log: clist.h,v $
- * Revision 1.1 95/01/11 10:18:59 kwelton
- * Initial revision
- *
- * Revision 1.3 88/06/17 20:18:26 beta
- * Acorn Unix initial beta version
- *
- */
- /* @(#)clist.h 1.2 87/05/15 3.2/4.3NFSSRC */
- /*
- * Copyright (c) 1982, 1986 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- *
- * @(#)clist.h 7.1 (Berkeley) 6/4/86
- */
-
- /*
- * Raw structures for the character list routines.
- */
- struct cblock {
- struct cblock *c_next;
- char c_info[CBSIZE];
- };
- #ifdef KERNEL
- #ifdef DYNALLOC
- struct cblock *cfree;
- #else DYNALLOC
- struct cblock stat_cfree[NCLIST], *cfree;
- #endif DYNALLOC
- int nclist;
- struct cblock *cfreelist;
- int cfreecount;
- #endif
-
- /* EOF clist.h */
-