From: wessels <> Date: Wed, 26 May 1999 12:40:43 +0000 (+0000) Subject: cleanup after actually reading it X-Git-Tag: SQUID_3_0_PRE1~2171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaa320e1b52d24900569d70abae9782ea62e1e85;p=thirdparty%2Fsquid.git cleanup after actually reading it --- diff --git a/doc/Programming-Guide/prog-guide.sgml b/doc/Programming-Guide/prog-guide.sgml index a144a28030..762487208a 100644 --- a/doc/Programming-Guide/prog-guide.sgml +++ b/doc/Programming-Guide/prog-guide.sgml @@ -756,6 +756,7 @@ Squid consists of the following major components

These functions all relate to per-object I/O tasks: opening, closing, reading, writing, and unlinking objects on disk. + These functions can all be found in Note that the underlying storage system functions are @@ -881,9 +882,6 @@ Squid consists of the following major components does not need to be opened first. The filesystem layer will remove the object if it exists on the disk. -

- These functions can be found in @@ -893,8 +891,10 @@ Squid consists of the following major components

- Returns the current byte-offset of the cache object - on disk. + Returns the current byte-offset of the cache object on + disk. For read-objects, this is the offset after the last + successful disk read operation. For write-objects, it is + the offset of the last successful disk write operation. Once the The These functions deal with initializing, state logging, and related tasks for a squid storage system. - These functions can be found in - Each storage system must provide the functions - described in this section. Each function is - accessed through a function pointer stored in - the struct _SwapDir { ... @@ -1003,7 +1004,7 @@ Squid consists of the following major components }; - @@ -1018,9 +1019,7 @@ Squid consists of the following major components reading saved state information from disk (aka the "rebuild" procedure). - @@ -1034,7 +1033,7 @@ Squid consists of the following major components the user runs @@ -1052,10 +1051,10 @@ Squid consists of the following major components The @@ -1069,7 +1068,7 @@ Squid consists of the following major components the open state-holding log files (if any) for the storage system. - @@ -1084,7 +1083,7 @@ Squid consists of the following major components This feature may not be required by some storage systems and can be implemented as a null-function (no-op). - @@ -1095,17 +1094,18 @@ Squid consists of the following major components

The The