summaryrefslogtreecommitdiff
path: root/ace/ACE_Init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/ACE_Init.cpp')
-rw-r--r--ace/ACE_Init.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/ace/ACE_Init.cpp b/ace/ACE_Init.cpp
new file mode 100644
index 00000000000..bedca21cbc7
--- /dev/null
+++ b/ace/ACE_Init.cpp
@@ -0,0 +1,44 @@
+// $Id$
+
+#include "ace/ACE_Init.h"
+
+#include "ace/Object_Manager.h"
+
+#if defined (ACE_LACKS_INLINE_FUNCTIONS)
+#include "ace/ACE_Init.i"
+#endif /* ACE_LACKS_INLINE_FUNCTIONS */
+
+ACE_RCSID(ace, ACE, "$Id$")
+
+ // Static data members.
+ u_int ACE_Init::init_fini_count_ = 0;
+int
+ACE_Init::init (void)
+{
+ // Don't use ACE_TRACE, because Object_Manager might not have been
+ // instantiated yet.
+ // ACE_TRACE ("ACE_Init::init");
+
+ ++init_fini_count_;
+
+ return ACE_Object_Manager::instance ()->init ();
+}
+
+int
+ACE_Init::fini (void)
+{
+ ACE_TRACE ("ACE_Init::fini");
+
+ if (init_fini_count_ > 0)
+ {
+ if (--init_fini_count_ == 0)
+ return ACE_Object_Manager::instance ()->fini ();
+ else
+ // Wait for remaining fini () calls.
+ return 1;
+ }
+ else
+ // More ACE_Init::fini () calls than ACE_Init::init () calls. Bad
+ // application!
+ return -1;
+}