summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-11-28 09:02:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-11-28 09:02:54 +0000
commita4f8b94b601670d039b8b7d22fb52f6d604c3a23 (patch)
tree0e27c8d355bfdc27809b31af07b89123c0b94c33
parent823499c23f056bebffe961b8a0c81755d67d966b (diff)
downloadATCD-a4f8b94b601670d039b8b7d22fb52f6d604c3a23.tar.gz
ChangeLogTag: Thu Nov 28 09:01:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/Default_Constants.h3
-rw-r--r--ace/FILE.h25
2 files changed, 16 insertions, 12 deletions
diff --git a/ace/Default_Constants.h b/ace/Default_Constants.h
index 05967dab2a5..4bfc3ecdadb 100644
--- a/ace/Default_Constants.h
+++ b/ace/Default_Constants.h
@@ -9,7 +9,8 @@
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
* @author Jesper S. M|ller<stophph@diku.dk>
* @author and a cast of thousands...
- * @This one is split from the famous OS.h
+ *
+ * This one is split from the famous OS.h
*/
//=============================================================================
diff --git a/ace/FILE.h b/ace/FILE.h
index d1fd37211ea..6a0a9dcae9c 100644
--- a/ace/FILE.h
+++ b/ace/FILE.h
@@ -56,23 +56,23 @@ public:
/**
* @class ACE_FILE
*
- * @brief Defines the core methods of the <ACE_FILE> abstraction.
+ * @brief Defines the core methods of the ACE_FILE abstraction.
*/
class ACE_Export ACE_FILE : public ACE_IO_SAP
{
public:
- /// Close the <ACE_FILE> handle without removing the <ACE_FILE> from
+ /// Close the ACE_FILE handle without removing the ACE_FILE from
/// the file system.
int close (void);
- /// Close and remove the <ACE_FILE> from the file system.
+ /// Close and remove the ACE_FILE from the file system.
int remove (void);
- /// Remove the <ACE_FILE> from the file system without closing the
- /// <ACE_FILE> handle.
+ /// Remove the ACE_FILE from the file system without closing the
+ /// ACE_FILE handle.
int unlink (void);
- /// Get information on this <ACE_FILE>.
+ /// Get information on this ACE_FILE.
int get_info (ACE_FILE_Info *finfo);
/// Get information on this <ACE_FILE>.
@@ -100,21 +100,24 @@ public:
/// Return an offset for the file handle.
off_t tell (void);
- /// Same as <tell>, but <position> is deprecated.
+ /**
+ * @deprecated
+ * Same as tell(), but position() is deprecated.
+ */
off_t position (void);
/**
- * Disable signal <signum>
+ * Disable signal @a signum
* This is here to prevent Win32 from
* disabling SPIPE using socket calls
*/
int disable (int signum) const ;
- /// Return the local endpoint address in the referenced <ACE_Addr>.
+ /// Return the local endpoint address in the referenced ACE_Addr.
/// Returns 0 if successful, else -1.
int get_local_addr (ACE_Addr &) const;
- /// Return the same thing as <get_local_addr>.
+ /// Return the same thing as get_local_addr().
int get_remote_addr (ACE_Addr &) const;
/// Dump the state of an object.
@@ -125,7 +128,7 @@ public:
protected:
/// Ensure that this class is only created by the
- /// <ACE_FILE_Connector>.
+ /// ACE_FILE_Connector.
ACE_FILE (void);
/// File we are "connected" with...