neilg 2003/10/09 06:49:30
Modified:c/src/xercesc/util StringPool.cpp StringPool.hpp
Log:
make StringPool functions virtual so that we can implement a synchronized version of
StringPool for thread-safe updates.
Revision ChangesPath
1.6 +8 -1 xml-xerces/c/src/
neilg 2003/10/09 06:51:16
Added: c/src/xercesc/util SynchronizedStringPool.cpp
SynchronizedStringPool.hpp
Log:
implementation of a StringPool implementation that permits thread-safe updates.
This can now be used by a grammar pool that is locked so that s
neilg 2003/10/09 06:52:17
Modified:c/src/xercesc/util Makefile.in
Log:
build SynchronizedStringPool
Revision ChangesPath
1.38 +5 -0 xml-xerces/c/src/xercesc/util/Makefile.in
Index: Makefile.in
neilg 2003/10/09 06:54:25
Modified:c/src/xercesc/internal XMLGrammarPoolImpl.cpp
XMLGrammarPoolImpl.hpp
Log:
modify grammar pool implementation to that, once locked, a thread-safe StringPool is
used
Revision ChangesPath
1.6 +19 -3 xml-
neilg 2003/10/09 07:05:53
Modified:c/Projects/Win32/VC6/xerces-all/XercesLib XercesLib.dsp
XercesLib.mak
Log:
update MSVC 6 project files
Revision ChangesPath
1.157 +8 -0
xml-xerces/c/Projects/Win32/VC6/xerces-all/XercesLib/XercesLib.ds
neilg 2003/10/09 08:35:13
Modified:c/src/xercesc/util SynchronizedStringPool.cpp
Log:
fix bug in synchronized addOrFind method; thanks to Khaled for pointing this out
Revision ChangesPath
1.2 +5 -2 xml-xerces/c/src/xercesc/util/SynchronizedStringPool.cpp
peiyongz2003/10/09 12:11:37
Modified:c/src/xercesc/internal IGXMLScanner2.cpp SGXMLScanner.cpp
Log:
Fix to compilation error on Solaris
Revision ChangesPath
1.35 +1 -1 xml-xerces/c/src/xercesc/internal/IGXMLScanner2.cpp
Index: IGXMLScanner2.cpp
==
peiyongz2003/10/09 12:11:53
Modified:c/src/xercesc/internal XSerializeEngine.hpp
Log:
Fix to linkage error on Solaris
Revision ChangesPath
1.5 +7 -4 xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp
Index: XSerializeEngine.hpp
==
neilg 2003/10/09 19:06:09
Modified:c/src/xercesc/framework XMLFormatter.cpp XMLFormatter.hpp
Log:
fix for bug 21780; thanks to David Cargill
Revision ChangesPath
1.16 +35 -2 xml-xerces/c/src/xercesc/framework/XMLFormatter.cpp
Index: XMLFormatter.cpp