summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-17 07:08:29 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-17 07:08:29 (GMT)
commit34c26caae6f0aaf16f6cbff17fd5f73216ab1a38 (patch)
treee07bec09f679994f725ad95a41e5cd649facf56b
parent60c543c1d8c6699cc96829f15b16ecc60ac0b410 (diff)
downloaduscxml-34c26caae6f0aaf16f6cbff17fd5f73216ab1a38.zip
uscxml-34c26caae6f0aaf16f6cbff17fd5f73216ab1a38.tar.gz
uscxml-34c26caae6f0aaf16f6cbff17fd5f73216ab1a38.tar.bz2
Upped version to 0.1.1
-rw-r--r--CMakeLists.txt2
-rwxr-xr-xcontrib/local/compress_and_upload_deps.sh2
-rw-r--r--src/uscxml/concurrency/eventqueue/DelayedEventQueue.cpp9
3 files changed, 6 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 26ed9dc..0682f47 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.8.4)
# specify USCXML version
SET(USCXML_VERSION_MAJOR "0")
SET(USCXML_VERSION_MINOR "1")
-SET(USCXML_VERSION_PATCH "0")
+SET(USCXML_VERSION_PATCH "1")
SET(USCXML_VERSION ${USCXML_VERSION_MAJOR}.${USCXML_VERSION_MINOR}.${USCXML_VERSION_PATCH})
# build type has to be set before the project definition4
diff --git a/contrib/local/compress_and_upload_deps.sh b/contrib/local/compress_and_upload_deps.sh
index 49b3949..a9d3936 100755
--- a/contrib/local/compress_and_upload_deps.sh
+++ b/contrib/local/compress_and_upload_deps.sh
@@ -31,7 +31,7 @@ cd ../prebuilt
ssh ${USCXML_PREBUILT_HOST} mkdir -p ${USCXML_PREBUILT_PATH}/${VERSION}
PLATFORMS=`find . -maxdepth 1 -type d -regex ./[^\.].*`
-PLATFORMS="windows-x86_64"
+#PLATFORMS="windows-x86_64"
for FILE in ${PLATFORMS}; do
PLATFORM=`basename $FILE`
if [ "$PLATFORM" != "include" ]; then
diff --git a/src/uscxml/concurrency/eventqueue/DelayedEventQueue.cpp b/src/uscxml/concurrency/eventqueue/DelayedEventQueue.cpp
index b29c9ca..46c12e4 100644
--- a/src/uscxml/concurrency/eventqueue/DelayedEventQueue.cpp
+++ b/src/uscxml/concurrency/eventqueue/DelayedEventQueue.cpp
@@ -50,12 +50,11 @@ void DelayedEventQueue::run(void* instance) {
DelayedEventQueue* INSTANCE = (DelayedEventQueue*)instance;
int result;
while(INSTANCE->_isStarted) {
-#ifndef EVLOOP_NO_EXIT_ON_EMPTY
- result = event_base_dispatch(INSTANCE->_eventLoop);
-#else
- //result = event_base_dispatch(THIS->_eventLoop);
+// #ifndef EVLOOP_NO_EXIT_ON_EMPTY
+// result = event_base_dispatch(INSTANCE->_eventLoop);
+// #else
result = event_base_loop(INSTANCE->_eventLoop, EVLOOP_NO_EXIT_ON_EMPTY);
-#endif
+//#endif
(void)result;
}
}