summaryrefslogtreecommitdiff
path: root/ace/Filecache.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-01-11 16:04:42 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-01-11 16:04:42 +0000
commit837e32c31197b19ef6f13a0ddf120023daab275a (patch)
treecbb6ffc487da50ba7f3dcc203f5083a2d586a309 /ace/Filecache.h
parent190952b63bf20695eb7617a5fbb286aad4e1d5c1 (diff)
downloadATCD-837e32c31197b19ef6f13a0ddf120023daab275a.tar.gz
ChangeLogTag:Sat Jan 11 09:37:24 2003 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Filecache.h')
-rw-r--r--ace/Filecache.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Filecache.h b/ace/Filecache.h
index 4ea4b141a76..78bedd38a64 100644
--- a/ace/Filecache.h
+++ b/ace/Filecache.h
@@ -67,18 +67,18 @@ class ACE_Filecache_Object;
*/
class ACE_Export ACE_Filecache_Handle
{
-
- // (1) Get rid of the useless copying of files when reading. Although
- // it does make sure the file you send isn't being changed, it doesn't
- // make sure the file is in a sensible state before sending it.
-
- // Alternative: if the file get's trashed while it is being shipped, let
- // the client request the file again. The cache should have an updated
- // copy by that point.
-
+ // (1) Get rid of the useless copying of files when reading.
+ // Although it does make sure the file you send isn't being changed,
+ // it doesn't make sure the file is in a sensible state before
+ // sending it.
+ //
+ // Alternative: if the file get's trashed while it is being shipped,
+ // let the client request the file again. The cache should have an
+ // updated copy by that point.
+ //
// (2) Use hashing for locating files. This means I need a hastable
// implementation with buckets.
-
+ //
// (3) Only lock when absolutely necessary. JAWS_Virtual_Filesystem was
// rather conservative, but for some reason it still ran into problems.
// Since this design should be simpler, problems should be easier to spot.