1: /* sh.dir.h 4.1 10/9/80 */
2:
3: /*
4: * Structure for entries in directory stack.
5: */
6: struct directory {
7: struct directory *di_next; /* next in loop */
8: struct directory *di_prev; /* prev in loop */
9: unsigned short *di_count; /* refcount of processes */
10: char *di_name; /* actual name */
11: };
12: struct directory *dcwd; /* the one we are in now */
Defined variables
dcwd
defined in line
12; used 34 times
- in /usr/src/ucb/csh/sh.dir.c line
58,
67,
101-102(4),
109-114(3),
163-164(2),
186-188(2),
194-197(4),
208-210(3),
236-239(2),
256-261(2),
269,
350-351(2)
- in /usr/src/ucb/csh/sh.proc.c line
133,
236,
393-394(2),
631,
649-651(2)
Defined struct's
directory
defined in line
6; used 40 times
- in line 7-12(6)
- in /usr/src/ucb/csh/sh.dir.c line
10-12(4),
23(2),
30(4),
45(2),
88(2),
106(4),
182(2),
205(4),
219-223(4),
252(2),
280(2),
347(2)
Usage of this include