summaryrefslogtreecommitdiff
path: root/src/tasks
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-09-25 16:53:48 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-09-25 16:53:48 (GMT)
commit25d872ec48b6af1e6bc682bdaadca173926b07d1 (patch)
tree3c66cd4cf69ed2d8608e4bc702f6e6fed8a31528 /src/tasks
parent8d9b351568250cbd59c6cc4d390f790d6699332c (diff)
downloadpowder-25d872ec48b6af1e6bc682bdaadca173926b07d1.zip
powder-25d872ec48b6af1e6bc682bdaadca173926b07d1.tar.gz
MacOS X targets for Scons, Fix some inlines for clang
Diffstat (limited to 'src/tasks')
-rw-r--r--src/tasks/Task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/Task.cpp b/src/tasks/Task.cpp
index c9af99e..d29fe04 100644
--- a/src/tasks/Task.cpp
+++ b/src/tasks/Task.cpp
@@ -21,7 +21,7 @@ void Task::Start()
done = false;
progress = 0;
status = "";
- taskMutex = PTHREAD_MUTEX_INITIALIZER;
+ //taskMutex = PTHREAD_MUTEX_INITIALIZER;
before();
pthread_mutex_init (&taskMutex, NULL);
pthread_create(&doWorkThread, 0, &Task::doWork_helper, this);