You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by an...@apache.org on 2006/06/26 15:26:06 UTC

svn commit: r417186 - in /incubator/stdcxx/trunk: include/rw/_mutex.h src/exception.cpp

Author: antonp
Date: Mon Jun 26 06:26:06 2006
New Revision: 417186

URL: http://svn.apache.org/viewvc?rev=417186&view=rev
Log:
2006-06-26  Anton Pevtsov  <an...@moscow.vdiweb.com>

	* include/rw/_mutex.h: Added missed _RWSTD_EXPORT directive.
	* src/exception.cpp: Added missed _RWSTD_EXPORT directive.

Modified:
    incubator/stdcxx/trunk/include/rw/_mutex.h
    incubator/stdcxx/trunk/src/exception.cpp

Modified: incubator/stdcxx/trunk/include/rw/_mutex.h
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/rw/_mutex.h?rev=417186&r1=417185&r2=417186&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/rw/_mutex.h (original)
+++ incubator/stdcxx/trunk/include/rw/_mutex.h Mon Jun 26 06:26:06 2006
@@ -1866,7 +1866,7 @@
 struct __rw_synchronized
 {
     // static so that it takes up no space
-    static __rw_mutex _C_mutex;
+    static _RWSTD_EXPORT __rw_mutex _C_mutex;
 
     void _C_lock () { }
 

Modified: incubator/stdcxx/trunk/src/exception.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/exception.cpp?rev=417186&r1=417185&r2=417186&view=diff
==============================================================================
--- incubator/stdcxx/trunk/src/exception.cpp (original)
+++ incubator/stdcxx/trunk/src/exception.cpp Mon Jun 26 06:26:06 2006
@@ -633,7 +633,7 @@
 
 // dummy empty object (not an actual mutex) - allows lib to "look"
 // the same in single-threaded mode as in multi-threaded mode
-__rw_mutex __rw_synchronized::_C_mutex;
+__rw_mutex _RWSTD_EXPORT __rw_synchronized::_C_mutex;
 
 #endif   // _RWSTD_REENTRANT