summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-04-17 19:10:09 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-04-17 19:10:09 +0200
commitaddc66f94c92683e43b264a5e269470da173b310 (patch)
treedb38c601619f65f13178deca1de92ce1d4bbbc23
parent05f90a87cdb1cb354ffd8608ed4b01a9b7bbc70e (diff)
downloadATCD-addc66f94c92683e43b264a5e269470da173b310.tar.gz
Fixed compile error on non Windows platforms
* TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp:
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
index c43b30e9429..ab2e06d5c0f 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
@@ -69,7 +69,6 @@ Watchdog::stop()
this->stop_ = true;
this->wait();
}
-
#endif /* ACE_WIN32 */
ImR_Activator_i::ImR_Activator_i (void)
@@ -82,7 +81,9 @@ ImR_Activator_i::ImR_Activator_i (void)
, max_env_vars_ (Activator_Options::ENVIRONMENT_MAX_VARS)
, detach_child_ (false)
, active_check_pid_ (ACE_INVALID_PID)
+#if defined (ACE_WIN32)
, process_watcher_ (process_mgr_)
+#endif /* ACE_WIN32 */
{
}