[openrtm-commit:02909] r3066 - trunk/OpenRTM-aist/src/lib/coil/common
openrtm @ openrtm.org
openrtm @ openrtm.org
2017年 11月 7日 (火) 18:43:54 JST
Author: miyamoto
Date: 2017-11-07 18:43:54 +0900 (Tue, 07 Nov 2017)
New Revision: 3066
Modified:
trunk/OpenRTM-aist/src/lib/coil/common/Async.h
Log:
[compat, VxWorks] fixed bug.
Modified: trunk/OpenRTM-aist/src/lib/coil/common/Async.h
===================================================================
--- trunk/OpenRTM-aist/src/lib/coil/common/Async.h 2017-11-07 09:43:30 UTC (rev 3065)
+++ trunk/OpenRTM-aist/src/lib/coil/common/Async.h 2017-11-07 09:43:54 UTC (rev 3066)
@@ -204,7 +204,7 @@
{
m_func(m_obj);
{
- Guard<Mutex> guard(m_mutex);
+ coil::Guard<Mutex> guard(m_mutex);
m_finished = true;
}
@@ -273,7 +273,7 @@
*/
virtual bool finished()
{
- Guard<Mutex> guard(m_mutex);
+ coil::Guard<Mutex> guard(m_mutex);
return m_finished;
}
private:
More information about the openrtm-commit
mailing list