summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 18:33:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 18:33:24 +0000
commit80574755fb6685cddcdfca8a4dfca1dda820696b (patch)
tree395ff34ae3e326820691ec8015cd3feeffd09e04
parent2b6e9aafba30a3a519523995caab3567fe03b526 (diff)
downloadATCD-80574755fb6685cddcdfca8a4dfca1dda820696b.tar.gz
ChangeLogTag: Sun Apr 14 20:31:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/Connector.h11
-rw-r--r--ace/Process.h9
5 files changed, 30 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 36515ee6016..70a90177a55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Apr 14 20:33:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Connector.h:
+ * ace/Process.h:
+ Doxygen-ized some of the comments
+
Sun Apr 14 19:25:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Future.h:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 36515ee6016..70a90177a55 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Sun Apr 14 20:33:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Connector.h:
+ * ace/Process.h:
+ Doxygen-ized some of the comments
+
Sun Apr 14 19:25:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Future.h:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 36515ee6016..70a90177a55 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Sun Apr 14 20:33:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Connector.h:
+ * ace/Process.h:
+ Doxygen-ized some of the comments
+
Sun Apr 14 19:25:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Future.h:
diff --git a/ace/Connector.h b/ace/Connector.h
index 91e47d75a3f..19a4fe5c34e 100644
--- a/ace/Connector.h
+++ b/ace/Connector.h
@@ -43,25 +43,28 @@ public:
const void * = 0,
long timer_id = -1);
- // = Get SVC_HANDLER.
+ /// Get SVC_HANDLER.
SVC_HANDLER *svc_handler (void);
// = Get/set handle.
/// Get handle.
- /// Set handle.
ACE_HANDLE handle (void);
+
+ /// Set handle.
void handle (ACE_HANDLE);
// = Get/set argument.
/// Get argument.
- /// Set argument.
const void *arg (void);
+
+ /// Set argument.
void arg (const void *);
// = Set/get timer cancellation handle.
/// Get cancellation id.
- /// Set cancellation id.
long cancellation_id (void);
+
+ /// Set cancellation id.
void cancellation_id (long timer_id);
/// Dump the state of an object.
diff --git a/ace/Process.h b/ace/Process.h
index 75b2a15cf86..c8ba9b2d5b7 100644
--- a/ace/Process.h
+++ b/ace/Process.h
@@ -238,8 +238,9 @@ public:
int passed_handles (ACE_Handle_Set &set) const;
/// Set value for avoid_zombies (has no real effect except on *nix).
- /// Get current value for avoid_zombies.
void avoid_zombies (int);
+
+ /// Get current value for avoid_zombies.
int avoid_zombies (void);
#if defined (ACE_WIN32)
@@ -552,15 +553,15 @@ class ACE_Export ACE_Managed_Process : public ACE_Process
public:
ACE_Managed_Process ();
+ /// Cleanup by deleting <this>.
virtual void unmanage (void);
- // Cleanup by deleting <this>.
private:
+ /// Make sure that we're allocated dynamically!
virtual ~ACE_Managed_Process (void);
- // Make sure that we're allocated dynamically!
+ /// Keep G++ happy...
friend class ace_dewarn_gplusplus;
- // Keep G++ happy...
};
#include "ace/SString.h"