summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 10:07:27 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 10:07:27 +0000
commit1efad51474f69330cc6c5c7b516072cb4221ebb5 (patch)
tree312f336f597bf9d883238f60a72b46d1156dbe11
parentae88989fec5ad8cf440938e922b049a237be9783 (diff)
downloadATCD-1efad51474f69330cc6c5c7b516072cb4221ebb5.tar.gz
ChangeLogTag: Sun Apr 14 12:06:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog1
-rw-r--r--ChangeLogs/ChangeLog-02a1
-rw-r--r--ChangeLogs/ChangeLog-03a1
-rw-r--r--ace/Filecache.h10
4 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e86bd804544..20753c4e820 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
+ * ace/Filecache.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e86bd804544..20753c4e820 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,6 +1,7 @@
Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
+ * ace/Filecache.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e86bd804544..20753c4e820 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,6 +1,7 @@
Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
+ * ace/Filecache.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ace/Filecache.h b/ace/Filecache.h
index 7e8df017878..79e562884da 100644
--- a/ace/Filecache.h
+++ b/ace/Filecache.h
@@ -323,9 +323,10 @@ private:
ACE_TCHAR *tempname_;
ACE_TCHAR filename_[MAXPATHLEN + 1];
- /// mmap_ holds the memory mapped version of the temporary file.
- /// handle_ is the descriptor to the temporary file.
+ /// Holds the memory mapped version of the temporary file.
ACE_Mem_Map mmap_;
+
+ /// The descriptor to the temporary file.
ACE_HANDLE handle_;
/// Used to compare against the real file to test if an update is needed.
@@ -342,9 +343,10 @@ private:
/// Security attribute object.
LPSECURITY_ATTRIBUTES sa_;
- /// lock_ provides a bookkeeping mechanism for users of this object.
- /// junklock_ is the default initializer
+ /// The default initializer
ACE_SYNCH_RW_MUTEX junklock_;
+
+ /// Provides a bookkeeping mechanism for users of this object.
ACE_SYNCH_RW_MUTEX &lock_;
};