aboutsummaryrefslogtreecommitdiffstats
path: root/doc/threads.html
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-07-24 23:47:05 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-07-24 23:47:05 +0000
commit0b28e88eb9285def35d2f1201a932014b717c3d3 (patch)
treefea29a614b18eef38e86f33dddec52a837f724da /doc/threads.html
parent8e8a703c767abfd43fdc89794f009a443096236e (diff)
downloadandroid_external_libxml2-0b28e88eb9285def35d2f1201a932014b717c3d3.tar.gz
android_external_libxml2-0b28e88eb9285def35d2f1201a932014b717c3d3.tar.bz2
android_external_libxml2-0b28e88eb9285def35d2f1201a932014b717c3d3.zip
applied syntax patch from Rick Jones and rebuilt the web site. Daniel
* doc/xml.html doc/*.html: applied syntax patch from Rick Jones and rebuilt the web site. Daniel
Diffstat (limited to 'doc/threads.html')
-rw-r--r--doc/threads.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/threads.html b/doc/threads.html
index 9aa55c09..eba4457b 100644
--- a/doc/threads.html
+++ b/doc/threads.html
@@ -92,7 +92,7 @@ threads can safely work in parallel parsing different documents. There is
however a couple of things to do to ensure it:</p>
<ul>
<li>configure the library accordingly using the --with-threads options</li>
-<li>call xmlInitParser() in the &quot;main&quot; thread before using any of the
+ <li>call xmlInitParser() in the &quot;main&quot; thread before using any of the
libxml API (except possibly selecting a different memory allocator)</li>
</ul>
<p>Note that the thread safety cannot be ensured for multiple threads sharing
@@ -101,13 +101,13 @@ exports a basic mutex and reentrant mutexes API in &lt;libxml/threads.h&gt;.
The parts of the library checked for thread safety are:</p>
<ul>
<li>concurrent loading</li>
-<li>file access resolution</li>
-<li>catalog access</li>
-<li>catalog building</li>
-<li>entities lookup/accesses</li>
-<li>validation</li>
-<li>global variables per-thread override</li>
-<li>memory handling</li>
+ <li>file access resolution</li>
+ <li>catalog access</li>
+ <li>catalog building</li>
+ <li>entities lookup/accesses</li>
+ <li>validation</li>
+ <li>global variables per-thread override</li>
+ <li>memory handling</li>
</ul>
<p>XPath is supposed to be thread safe now, but this wasn't tested
seriously.</p>