Update of /cvsroot/openvrml/openvrml/src/libopenvrml
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28374/src/libopenvrml
Modified Files:
Makefile.am
Log Message:
Added a read/write mutex. Hopefully Boost will have a read/write mutex before too long; if/when that happens, this one can probably go away. openvrml::read_write_mutex simply follows the implementation described by Butenhof using the Boost thread primitives.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/Makefile.am,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** Makefile.am 30 Apr 2007 07:37:25 -0000 1.41
--- Makefile.am 15 May 2007 04:06:11 -0000 1.42
***************
*** 6,9 ****
--- 6,10 ----
openvrml_includedir = $(pkgincludedir)/openvrml
openvrml_include_HEADERS = \
+ openvrml/read_write_mutex.h \
openvrml/basetypes.h \
openvrml/field_value.h \
***************
*** 92,95 ****
--- 93,97 ----
libopenvrml_la_SOURCES = \
+ openvrml/read_write_mutex.cpp \
openvrml/basetypes.cpp \
openvrml/field_value.cpp \
|