From: Justin Erenkrantz Date: Fri, 16 Aug 2002 05:50:56 +0000 (+0000) Subject: Add link to expat's site X-Git-Tag: AGB_BEFORE_AAA_CHANGES~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84f5084d16d53faf22406116644341ba1098288f;p=thirdparty%2Fapache%2Fhttpd.git 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 a1d2c9ba3c2..85b30cf8a11 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.