cvs diff: Diffing boost/thread Index: boost/thread/tss.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/thread/tss.hpp,v retrieving revision 1.11 diff -u -5 -p -r1.11 tss.hpp --- boost/thread/tss.hpp 25 Jun 2004 20:13:50 -0000 1.11 +++ boost/thread/tss.hpp 5 Jul 2004 10:25:07 -0000 @@ -105,11 +105,11 @@ private: detail::tss m_tss; }; } // namespace boost -#endif BOOST_THREAD_NO_TSS_CLEANUP +#endif // BOOST_THREAD_NO_TSS_CLEANUP #endif // BOOST_TSS_WEK070601_HPP // Change Log: // 6 Jun 01 // WEKEMPF Initial version. cvs diff: Diffing boost/thread/detail Index: boost/thread/detail/lock.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/thread/detail/lock.hpp,v retrieving revision 1.7 diff -u -5 -p -r1.7 lock.hpp --- boost/thread/detail/lock.hpp 25 Jun 2004 14:35:55 -0000 1.7 +++ boost/thread/detail/lock.hpp 5 Jul 2004 10:25:07 -0000 @@ -175,11 +175,11 @@ public: m_locked = true; } bool try_lock() { if (m_locked) throw lock_error(); - return (m_locked = lock_ops::trylock(m_mutex)); + return (m_locked = lock_ops::trylock(m_mutex)); } bool timed_lock(const xtime& xt) { if (m_locked) throw lock_error(); return (m_locked = lock_ops::timedlock(m_mutex, xt)); =================================================================== RCS file: /cvsroot/boost/boost/libs/thread/src/tss.cpp,v retrieving revision 1.10 diff -u -5 -p -r1.10 tss.cpp --- libs/thread/src/tss.cpp 25 Jun 2004 20:27:13 -0000 1.10 +++ libs/thread/src/tss.cpp 5 Jul 2004 10:25:28 -0000 @@ -196,11 +196,11 @@ void tss::cleanup(void* value) } } // namespace detail } // namespace boost -#endif BOOST_THREAD_NO_TSS_CLEANUP +#endif // BOOST_THREAD_NO_TSS_CLEANUP // Change Log: // 6 Jun 01 // WEKEMPF Initial version. // 30 May 02 WEKEMPF