From: anthony_at_[hidden]
Date: 2007-10-09 08:23:09


Author: anthonyw
Date: 2007-10-09 08:23:09 EDT (Tue, 09 Oct 2007)
New Revision: 39836
URL: http://svn.boost.org/trac/boost/changeset/39836

Log:
fixed direction of conditional
Text files modified:
   trunk/boost/thread/pthread/mutex.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/thread/pthread/mutex.hpp
==============================================================================
--- trunk/boost/thread/pthread/mutex.hpp (original)
+++ trunk/boost/thread/pthread/mutex.hpp 2007-10-09 08:23:09 EDT (Tue, 09 Oct 2007)
@@ -72,7 +72,7 @@
     {
     private:
         pthread_mutex_t m;
-#ifdef BOOST_PTHREAD_HAS_TIMEDLOCK
+#ifndef BOOST_PTHREAD_HAS_TIMEDLOCK
         pthread_cond_t cond;
         bool is_locked;