summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-17 23:06:26 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-17 23:06:26 (GMT)
commit7c76e603c874009346208c61ad7a3386997b58d1 (patch)
tree2ecf830f7e343af4d8f0439f43ae0cbdafd7b3ba /src/uscxml/Interpreter.h
parenteba3e69a20da96e527827ac83a537cde8bdc66ba (diff)
downloaduscxml-7c76e603c874009346208c61ad7a3386997b58d1.zip
uscxml-7c76e603c874009346208c61ad7a3386997b58d1.tar.gz
uscxml-7c76e603c874009346208c61ad7a3386997b58d1.tar.bz2
Revert "Protect parts of interpreter with mutexes for thread-safety"
This reverts commit eba3e69a20da96e527827ac83a537cde8bdc66ba.
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index 1075a1c..f28eb69 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -142,12 +142,10 @@ public:
void receive(const Event& event, bool toFront = false);
Event getCurrentEvent() {
- tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);
return _currEvent;
}
Arabica::XPath::NodeSet<std::string> getConfiguration() {
- tthread::lock_guard<tthread::recursive_mutex> lock(_mutex);
return _configuration;
}
void setConfiguration(const std::vector<std::string>& states) {