X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fmutex.h;h=414e09fed3cc9ef32d53c798d1267bda72f5d8cc;hb=82130a0421d4d15df51078dd58aa8710e370a8ef;hp=dab2f1311381d3b4d5bc5802abf92639fe88a4f2;hpb=fe8b76d75847dfc7f9dac3d1382c2eb0ab28dec0;p=yaz-moved-to-github.git diff --git a/include/yaz/mutex.h b/include/yaz/mutex.h index dab2f13..414e09f 100644 --- a/include/yaz/mutex.h +++ b/include/yaz/mutex.h @@ -103,6 +103,8 @@ YAZ_EXPORT void yaz_cond_create(YAZ_COND *p); YAZ_EXPORT void yaz_cond_destroy(YAZ_COND *p); +struct timeval; + /** \brief waits for condition \param p condition variable handle \param m mutex @@ -110,8 +112,6 @@ void yaz_cond_destroy(YAZ_COND *p); Semantics like pthread_cond_wait. */ -YAZ_EXPORT struct timeval; - YAZ_EXPORT int yaz_cond_wait(YAZ_COND p, YAZ_MUTEX m, const struct timeval *abstime);