summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins')
-rw-r--r--src/uscxml/plugins/invoker/scxml/USCXMLInvoker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/plugins/invoker/scxml/USCXMLInvoker.cpp b/src/uscxml/plugins/invoker/scxml/USCXMLInvoker.cpp
index 44af2dd..67b45e4 100644
--- a/src/uscxml/plugins/invoker/scxml/USCXMLInvoker.cpp
+++ b/src/uscxml/plugins/invoker/scxml/USCXMLInvoker.cpp
@@ -124,7 +124,7 @@ void USCXMLInvoker::run(void* instance) {
InterpreterState state = USCXML_UNDEF;
while(state != USCXML_FINISHED) {
std::lock_guard<std::recursive_mutex> lock(INSTANCE->_mutex);
- state = INSTANCE->_invokedInterpreter.step(200);
+ state = INSTANCE->_invokedInterpreter.step();
INSTANCE->_cond.notify_all();
}