Hi LRN,

2014-04-22 12:21 GMT+02:00 LRN <lrn1...@gmail.com>:
>
> ---
>  mingw-w64-libraries/winpthreads/include/pthread.h | 2 +-
>  mingw-w64-libraries/winpthreads/src/cond.c        | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mingw-w64-libraries/winpthreads/include/pthread.h 
> b/mingw-w64-libraries/winpthreads/include/pthread.h
> index b0c24cf..b7a0642 100644
> --- a/mingw-w64-libraries/winpthreads/include/pthread.h
> +++ b/mingw-w64-libraries/winpthreads/include/pthread.h
> @@ -331,7 +331,7 @@ int WINPTHREAD_API pthread_cond_signal (pthread_cond_t 
> *cv);
>  int WINPTHREAD_API pthread_cond_broadcast (pthread_cond_t *cv);
>  int WINPTHREAD_API pthread_cond_wait (pthread_cond_t *cv, pthread_mutex_t 
> *external_mutex);
>  int WINPTHREAD_API pthread_cond_timedwait(pthread_cond_t *cv, 
> pthread_mutex_t *external_mutex, const struct timespec *t);
> -int WINPTHREAD_API pthread_cond_timedwait_relative(pthread_cond_t *cv, 
> pthread_mutex_t *external_mutex, const struct timespec *t);
> +int WINPTHREAD_API pthread_cond_timedwait_relative_np(pthread_cond_t *cv, 
> pthread_mutex_t *external_mutex, const struct timespec *t);
>
>  int WINPTHREAD_API pthread_mutex_lock(pthread_mutex_t *m);
>  int WINPTHREAD_API pthread_mutex_timedlock(pthread_mutex_t *m, const struct 
> timespec *ts);
> diff --git a/mingw-w64-libraries/winpthreads/src/cond.c 
> b/mingw-w64-libraries/winpthreads/src/cond.c
> index c810916..d38513b 100644
> --- a/mingw-w64-libraries/winpthreads/src/cond.c
> +++ b/mingw-w64-libraries/winpthreads/src/cond.c
> @@ -516,7 +516,7 @@ pthread_cond_timedwait(pthread_cond_t *c, pthread_mutex_t 
> *m, const struct times
>  }
>
>  int
> -pthread_cond_timedwait_relative(pthread_cond_t *c, pthread_mutex_t *m, const 
> struct timespec *t)
> +pthread_cond_timedwait_relative_np(pthread_cond_t *c, pthread_mutex_t *m, 
> const struct timespec *t)
>  {
>    return pthread_cond_timedwait_impl(c, m, t, 1);
>  }
> --
> 1.8.5.3

Patch seems ok.  Please apply to trunk and to v3.

Thanks,
Kai

------------------------------------------------------------------------------
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform
_______________________________________________
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Reply via email to