]> git.lyx.org Git - lyx.git/blobdiff - sigc++/thread.cc
do not include language.h and gettext.h in lyxfont.h and lyxparagraph.h
[lyx.git] / sigc++ / thread.cc
index 035a2980b1757170952ee7f9f368463367e46a9b..d9b0d4d2009479b645799697243d13f719436f07 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_);}