]> git.lyx.org Git - lyx.git/blobdiff - sigc++/thread.cc
move things around
[lyx.git] / sigc++ / thread.cc
index bd1e51a9f69112af0e9ff7cfc5c048a9506b80e2..a8ed235dc6495b08be6f882c81d5f636fe64310b 100644 (file)
@@ -53,7 +53,7 @@ Condition::~Condition()
 int Condition::signal()       {return pthread_cond_signal(&cond_);}
 int Condition::broadcast()    {return pthread_cond_broadcast(&cond_);}
 int Condition::wait(Mutex &m) {return pthread_cond_wait(&cond_,m);}
-int Condition::wait(Mutex &m,timespec* spec)
+int Condition::wait(Mutex &m,struct timespec* spec)
   {return pthread_cond_timedwait(&cond_,m,spec);}
 int Condition::destroy()      {return pthread_cond_destroy(&cond_);}
 
@@ -148,8 +148,8 @@ ThreadAttr Thread::Default={0};
 
 
 #ifdef SIGC_CXX_NAMESPACES
-};
-};
+}
+}
 #endif
 
 #endif