summaryrefslogtreecommitdiff
path: root/mysys/my_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'mysys/my_pthread.c')
-rw-r--r--mysys/my_pthread.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysys/my_pthread.c b/mysys/my_pthread.c
index 07e8ecec6ac..0de7041fae7 100644
--- a/mysys/my_pthread.c
+++ b/mysys/my_pthread.c
@@ -425,6 +425,19 @@ int my_pthread_cond_init(pthread_cond_t *mp, const pthread_condattr_t *attr)
#endif
+#ifdef __NETWARE__
+/* NetWare does not re-acquire the lock if the condition fails */
+int my_pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
+ struct timespec *abstime)
+{
+ int err= pthread_cond_timedwait(cond, mutex, abstime);
+ if (err)
+ pthread_mutex_lock(mutex);
+ return err;
+}
+#endif /* __NETWARE__ */
+
+
/*****************************************************************************
Patches for HPUX
We need these because the pthread_mutex.. code returns -1 on error,