[openrtm-commit:02051] r2779 - trunk/OpenRTM-aist/src/lib/rtm

openrtm @ openrtm.org openrtm @ openrtm.org
2016年 10月 13日 (木) 13:39:44 JST


Author: n-ando
Date: 2016-10-13 13:39:44 +0900 (Thu, 13 Oct 2016)
New Revision: 2779

Modified:
   trunk/OpenRTM-aist/src/lib/rtm/ManagerServant.cpp
Log:
[compat,bugfix,->RELENG_1_2] ManagerServant master flag is now initialized in ctor. Other member vars also initilized. refs #3654

Modified: trunk/OpenRTM-aist/src/lib/rtm/ManagerServant.cpp
===================================================================
--- trunk/OpenRTM-aist/src/lib/rtm/ManagerServant.cpp	2016-10-12 16:51:33 UTC (rev 2778)
+++ trunk/OpenRTM-aist/src/lib/rtm/ManagerServant.cpp	2016-10-13 04:39:44 UTC (rev 2779)
@@ -30,7 +30,9 @@
   // Example implementational code for IDL interface RTM::Manager
   //
   ManagerServant::ManagerServant()
-    : m_mgr(::RTC::Manager::instance())
+    : rtclog("ManagerServant"),
+      m_mgr(::RTC::Manager::instance()),
+      m_isMaster(false)
   {
     rtclog.setName("ManagerServant");
     coil::Properties config(m_mgr.getConfig());    



More information about the openrtm-commit mailing list