Hi, is TinyXML thread safe? Did not find any note about this in the docs.
In sources I found that CondenseWhitespace is not thread safe. Are there another such global variables that would make the code not thread safe? Any experiences with it?
Thank you
Ivo
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, is TinyXML thread safe? Did not find any note about this in the docs.
In sources I found that CondenseWhitespace is not thread safe. Are there another such global variables that would make the code not thread safe? Any experiences with it?
Thank you
Ivo
The short answer is no. A little more info on this thread:
http://sourceforge.net/forum/forum.php?thread_id=1117845&forum_id=172103
lee
When I do not use STL and avoid static variables and I do not access TiXml objects from different threads - can I use it multithreaded? Anyone knows?
Thanks
Ivo
Hmmm . . . I looked through the code, and didn't see any static variables other than those used in a constant manner:
utf8ByteTable
errorString
entity
condenseWhiteSpace
What am I missing?
P.S. My STL is thread safe.