summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-12-04 14:03:25 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-12-04 14:03:25 +0100
commit49eb50c25907afefbc20907aafeebcab69aa0ed5 (patch)
tree04db7686be829ed103aefca9658bab0f371486f9 /TAO/orbsvcs/ImplRepo_Service
parent3d51ee9c9198600b863e9eeee9c9d112d34dc406 (diff)
downloadATCD-49eb50c25907afefbc20907aafeebcab69aa0ed5.tar.gz
Remove notify_child_death, it is not used, issue #765
* TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl: * TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp: * TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl4
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp9
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h4
3 files changed, 0 insertions, 17 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
index fdbd0490a8e..b66c5d451cf 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
@@ -13,10 +13,6 @@ module ImplementationRepository
/// You must pass in the token returned from register_activator.
void unregister_activator (in string name, in long token);
- /// The ImR_Activator calls this method to notify death of child
- /// process that it had started.
- void notify_child_death (in string name);
-
/// Newer Activators call this method to notify death of child
/// process including pid to disambiguate child instances
void child_death_pid (in string name, in long pid);
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
index 6266a7968b8..a18135b3bfb 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
@@ -510,15 +510,6 @@ ImR_Locator_i::child_death_i (const char* name, int pid)
}
void
-ImR_Locator_i::notify_child_death
-(ImplementationRepository::AMH_LocatorResponseHandler_ptr _tao_rh,
- const char* name)
-{
- this->child_death_i (name, 0);
- _tao_rh->notify_child_death ();
-}
-
-void
ImR_Locator_i::child_death_pid
(ImplementationRepository::AMH_LocatorResponseHandler_ptr _tao_rh,
const char* name, CORBA::Long pid)
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h
index 92a54053b0e..0b5466381d0 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.h
@@ -76,10 +76,6 @@ public:
const char* name,
CORBA::Long token);
- virtual void notify_child_death
- (ImplementationRepository::AMH_LocatorResponseHandler_ptr _tao_rh,
- const char* name);
-
virtual void child_death_pid
(ImplementationRepository::AMH_LocatorResponseHandler_ptr _tao_rh,
const char* name, CORBA::Long pid);