Update of /cvsroot/boost/boost/boost/thread/win32
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4656

Modified Files:
      Tag: thread_rewrite
        read_write_mutex.hpp 
Log Message:
scoped_read_lock calls m.cond.notify_one, so it passes test


Index: read_write_mutex.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/thread/win32/Attic/read_write_mutex.hpp,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- read_write_mutex.hpp        2 May 2006 09:23:33 -0000       1.1.2.3
+++ read_write_mutex.hpp        8 Jun 2006 09:57:00 -0000       1.1.2.4
@@ -32,7 +32,7 @@
             {
                 boost::mutex::scoped_lock lock(m.guard);
                 --m.reader_count;
-                cond.notify_one();
+                m.cond.notify_one();
             }
         };
 



_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to