summaryrefslogtreecommitdiff
path: root/ACE/ace/Filecache.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 11:05:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 11:05:04 +0000
commit1e140f84b5bcac153e95c2e6cf83436f15ee8596 (patch)
tree861124f3162a9c3518e552e7074c28d0694e5e9a /ACE/ace/Filecache.h
parent286eedd2fc603c3c384ae9dd0d70133bd0694474 (diff)
downloadATCD-1e140f84b5bcac153e95c2e6cf83436f15ee8596.tar.gz
Mon Jul 12 11:04:58 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/ACE.cpp: * ace/Activation_Queue.h: * ace/Active_Map_Manager.h: * ace/Dev_Poll_Reactor.h: * ace/Dev_Poll_Reactor.inl: * ace/Event_Handler.h: * ace/Filecache.h: * ace/Manual_Event.h: * ace/Map_Manager.h: * ace/Mem_Map.h: * ace/Message_Block.h: * ace/OS_Log_Msg_Attributes.h: * ace/OS_NS_unistd.h: * ace/Object_Manager.h: * ace/Recursive_Thread_Mutex.h: Layout, const, and doxygen fixes
Diffstat (limited to 'ACE/ace/Filecache.h')
-rw-r--r--ACE/ace/Filecache.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/ACE/ace/Filecache.h b/ACE/ace/Filecache.h
index df1835b9372..f43f6ed1f76 100644
--- a/ACE/ace/Filecache.h
+++ b/ACE/ace/Filecache.h
@@ -41,7 +41,8 @@ class ACE_Filecache_Object;
/**
* @class ACE_Filecache_Handle
*
- * @brief Abstraction over a real file. This is meant to be the entry
+ * @brief
+ * Abstraction over a real file. This is meant to be the entry
* point into the Cached Virtual Filesystem.
*
* This is a cached filesystem implementation based loosely on the
@@ -143,7 +144,7 @@ private:
/// A reference to the low level instance.
ACE_Filecache_Object *file_;
- /// A <dup>'d version of the one from <file_>.
+ /// A dup'd version of the one from file_.
ACE_HANDLE handle_;
int mapit_;
@@ -157,7 +158,8 @@ typedef ACE_Hash_Map_Entry<const ACE_TCHAR *, ACE_Filecache_Object *> ACE_Fileca
/**
* @class ACE_Filecache
*
- * @brief A hash table holding the information about entry point into
+ * @brief
+ * A hash table holding the information about entry point into
* the Cached Virtual Filesystem. On insertion, the reference
* count is incremented. On destruction, reference count is
* decremented.
@@ -231,7 +233,8 @@ private:
/**
* @class ACE_Filecache_Object
*
- * @brief Abstraction over a real file. This is what the Virtual
+ * @brief
+ * Abstraction over a real file. This is what the Virtual
* Filesystem contains. This class is not intended for general
* consumption. Please consult a physician before attempting to
* use this class.