summaryrefslogtreecommitdiff
path: root/TAO/tao/Cleanup_Func_Registry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Cleanup_Func_Registry.cpp')
-rw-r--r--TAO/tao/Cleanup_Func_Registry.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/TAO/tao/Cleanup_Func_Registry.cpp b/TAO/tao/Cleanup_Func_Registry.cpp
deleted file mode 100644
index 50e06b17d94..00000000000
--- a/TAO/tao/Cleanup_Func_Registry.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-#include "Cleanup_Func_Registry.h"
-
-#if !defined (__ACE_INLINE__)
-# include "Cleanup_Func_Registry.inl"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/Log_Msg.h"
-
-ACE_RCSID (tao,
- Cleanup_Func_Registry,
- "$Id$")
-
-TAO_Cleanup_Func_Registry::TAO_Cleanup_Func_Registry (void)
- : cleanup_funcs_ ()
-{
-}
-
-TAO_Cleanup_Func_Registry::~TAO_Cleanup_Func_Registry (void)
-{
-}
-
-int
-TAO_Cleanup_Func_Registry::register_cleanup_function (
- ACE_CLEANUP_FUNC func,
- size_t &slot_id)
-{
- size_t slot = this->cleanup_funcs_.size ();
-
- if (this->cleanup_funcs_.size (slot + 1) != 0)
- return -1;
-
- this->cleanup_funcs_[slot] = func;
- slot_id = slot;
-
- return 0;
-}
-
-void
-TAO_Cleanup_Func_Registry::cleanup (ACE_Array_Base<void *> &ts_objects)
-{
- size_t len = ts_objects.size ();
-
- // The allocated slot may never have been used. It is therefore
- // possible that the TSS array size may be less than the cleanup
- // function size. However, there is still a one-to-one
- // correspondence between cleanup_func[foo] and ts_object[foo].
-
- ACE_ASSERT (len <= this->cleanup_funcs_.size ());
-
- /// Cleanup each TSS object.
- for (size_t i = 0; i < len; ++i)
- {
- ACE_CLEANUP_FUNC destructor = this->cleanup_funcs_[i];
- if (destructor != 0)
- destructor (ts_objects[i], 0);
- }
-}
-
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-
-template class ACE_Array_Base<ACE_CLEANUP_FUNC>;
-
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-
-#pragma instantiate ACE_Array_Base<ACE_CLEANUP_FUNC>
-
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */