xv6-cs450/toc.ftr

15 lines
520 B
Plaintext
Raw Normal View History

2006-09-08 15:53:18 +02:00
2006-09-08 16:36:56 +02:00
The source listing is preceded by a cross-reference that lists every defined
2006-09-08 15:53:18 +02:00
constant, struct, global variable, and function in xv6. Each entry gives,
on the same line as the name, the line number (or, in a few cases, numbers)
where the name is defined. Successive lines in an entry list the line
numbers where the name is used. For example, this entry:
swtch 2208
0318 1928 1967 2207
2208
2006-09-08 15:53:18 +02:00
indicates that swtch is defined on line 2208 and is mentioned on five lines
2007-08-28 21:25:04 +02:00
on sheets 03, 19, and 22.