diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-14 18:33:24 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-14 18:33:24 +0000 |
commit | 80574755fb6685cddcdfca8a4dfca1dda820696b (patch) | |
tree | 395ff34ae3e326820691ec8015cd3feeffd09e04 /ace/Process.h | |
parent | 2b6e9aafba30a3a519523995caab3567fe03b526 (diff) | |
download | ATCD-80574755fb6685cddcdfca8a4dfca1dda820696b.tar.gz |
ChangeLogTag: Sun Apr 14 20:31:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Process.h')
-rw-r--r-- | ace/Process.h | 9 |
1 files changed, 5 insertions, 4 deletions
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" |