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
- in /usr/src/sys/sys/init_main.c line
316
- in /usr/src/sys/sys/tty_subr.c line
56,
67,
130,
143,
242,
253,
297,
311,
354,
366,
475,
487,
563,
574,
612,
623
cfreelist
defined in line
26; used 40 times
- in /usr/src/new/crash/crash.c line
276,
685(2),
1056-1057(2)
- in /usr/src/sys/sys/init_main.c line
314-315(2)
- in /usr/src/sys/sys/tty_subr.c line
54-55(2),
65-66(2),
128-129(2),
141-142(2),
240-241(2),
251-252(2),
289,
296,
302,
310,
351-353(2),
362-365(2),
473-474(2),
485-486(2),
561-562(2),
572-573(2),
593,
607-611(2),
617-622(2)
Defined struct's
cblock
defined in line
12; used 162 times
- in line 13-26(8)
- in /usr/src/new/crash/crash.c line
178-179(4),
223-224(4),
678-680(8),
966(2),
979-990(12),
1007-1018(12),
1036-1047(12),
1056(2),
1064(2),
1078(2),
1147(2),
1177(2)
- in /usr/src/sys/CURLY/param.c line
86-89(4)
- in /usr/src/sys/GENERIC/param.c line
86-89(4)
- in /usr/src/sys/QT/param.c line
86-89(4)
- in /usr/src/sys/conf/checksys.c line
224(2)
- in /usr/src/sys/conf/param.c line
86-89(4)
- in /usr/src/sys/pdp/machdep2.c line
328(2)
- in /usr/src/sys/sys/init_main.c line
305(2),
313(2)
- in /usr/src/sys/sys/tty_subr.c line
21(4),
32(2),
50-51(4),
62(2),
89(2),
116(2),
125-126(4),
138(2),
214(2),
229-233(4),
276(2),
301(2),
335(2),
361(2),
370(2),
416(2),
453-455(4),
470-471(4),
478-480(6),
536(2),
557-558(4),
569(2),
589(2),
616(2)
Usage of this include