Skip to content

Commit 1b19c5d

Browse files
committed
locks: follow up to r1667900.
As noticed by rjung, not all pthread implementations have mutex_timedlock(), like Solaris 8, so proc_mutex_proc_pthread_timedacquire() can return APR_ENOTIMPL. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1774973 13f79535-47bb-0310-9956-ffa450edef68
1 parent a641e91 commit 1b19c5d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

locks/unix/proc_mutex.c

+4
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ proc_mutex_proc_pthread_timedacquire(apr_proc_mutex_t *mutex,
649649
apr_time_t timeout,
650650
int absolute)
651651
{
652+
#ifdef HAVE_PTHREAD_MUTEX_TIMEDLOCK
652653
if (timeout < 0) {
653654
return proc_mutex_proc_pthread_acquire(mutex);
654655
}
@@ -683,6 +684,9 @@ proc_mutex_proc_pthread_timedacquire(apr_proc_mutex_t *mutex,
683684
}
684685
mutex->curr_locked = 1;
685686
return APR_SUCCESS;
687+
#else
688+
return APR_ENOTIMPL;
689+
#endif
686690
}
687691

688692
static apr_status_t proc_mutex_proc_pthread_release(apr_proc_mutex_t *mutex)

0 commit comments

Comments
 (0)