Index: boost/thread/exceptions.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/thread/exceptions.hpp,v retrieving revision 1.13 diff -u -p -r1.13 exceptions.hpp --- boost/thread/exceptions.hpp 29 Jul 2004 14:24:50 -0000 1.13 +++ boost/thread/exceptions.hpp 7 Sep 2004 18:49:05 -0000 @@ -34,7 +34,7 @@ protected: public: ~thread_exception() throw(); - int native_error() const { return m_sys_err; } + int native_error() const; const char* message() const; Index: libs/thread/src/exceptions.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/thread/src/exceptions.cpp,v retrieving revision 1.9 diff -u -p -r1.9 exceptions.cpp --- libs/thread/src/exceptions.cpp 17 Jul 2004 04:33:59 -0000 1.9 +++ libs/thread/src/exceptions.cpp 7 Sep 2004 18:49:05 -0000 @@ -82,6 +82,11 @@ thread_exception::~thread_exception() th { } +int thread_exception::native_error() const +{ + return m_sys_err; +} + const char* thread_exception::message() const { if (m_sys_err != 0)