summaryrefslogtreecommitdiff
path: root/ace/Service_Object.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-22 05:38:30 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-08-22 05:38:30 +0000
commit5fcc127eeca45fe711b81af8ea3505df0ec7b482 (patch)
tree721050a8504705718f5b6e54764f550d0f5b42cc /ace/Service_Object.h
parent6fd665d56bc3600177dd74a3bb15eaca7ceb6524 (diff)
downloadATCD-5fcc127eeca45fe711b81af8ea3505df0ec7b482.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Service_Object.h')
-rw-r--r--ace/Service_Object.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Service_Object.h b/ace/Service_Object.h
index 1c030643ddc..ce048e1f200 100644
--- a/ace/Service_Object.h
+++ b/ace/Service_Object.h
@@ -87,6 +87,9 @@ public:
int active (void) const;
void active (int);
+ void fini (void);
+ // Calls fini() on <type_>
+
void dump (void) const;
// Dump the state of an object.
@@ -111,6 +114,9 @@ private:
int active_;
// 1 if svc is currently active, otherwise 0.
+
+ int fini_already_called_;
+ // 1 if fini() on <type_> has already been called, otherwise 0.
};
class ACE_Export ACE_Service_Object_Ptr