From: Justin Erenkrantz
Date: Fri, 16 Aug 2002 05:50:56 +0000 (+0000)
Subject: Add link to expat's site
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=341a5fe4b81be7055830be58d37b99f4090f474c;p=apache
Add link to expat's site
Add commentary on why zlib is threadsafe (fully threadsafe as of 1.1.2
if default zalloc and zfree used - see zlib's changelog)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96409 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/developer/thread_safety.html b/docs/manual/developer/thread_safety.html
index a1d2c9ba3c..85b30cf8a1 100644
--- a/docs/manual/developer/thread_safety.html
+++ b/docs/manual/developer/thread_safety.html
@@ -103,8 +103,8 @@ individual symbols in the module.
|
- Expat |
- |
+ Expat |
+ |
Yes |
Need a separate parser instance per thread |
@@ -225,8 +225,8 @@ individual symbols in the module.
zlib |
1.1.4 |
- Yes? |
- |
+ Yes |
+ Relies upon thread-safe zalloc and zfree functions. Default is to use libc's calloc/free which are thread-safe. |