Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85806 - trunk/boost/sync/detail/mutexes
From: andrey.semashev_at_[hidden]
Date: 2013-09-20 15:03:54


Author: andysem
Date: 2013-09-20 15:03:54 EDT (Fri, 20 Sep 2013)
New Revision: 85806
URL: http://svn.boost.org/trac/boost/changeset/85806

Log:
Fixed incorrect macro test.

Text files modified:
   trunk/boost/sync/detail/mutexes/timed_mutex_posix.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/sync/detail/mutexes/timed_mutex_posix.hpp
==============================================================================
--- trunk/boost/sync/detail/mutexes/timed_mutex_posix.hpp Fri Sep 20 14:43:32 2013 (r85805)
+++ trunk/boost/sync/detail/mutexes/timed_mutex_posix.hpp 2013-09-20 15:03:54 EDT (Fri, 20 Sep 2013) (r85806)
@@ -47,7 +47,7 @@
 
 namespace BOOST_SYNC_DETAIL_ABI_NAMESPACE {
 
-#if defined(BOOST_SYNC_DETAIL_PTHREAD_HAS_TIMEDLOCK)
+#if !defined(BOOST_SYNC_HAS_PTHREAD_EINTR_BUG)
 using ::pthread_mutex_timedlock;
 #else
 BOOST_FORCEINLINE int pthread_mutex_timedlock(pthread_mutex_t* m, const struct timespec* t)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk