From: Justin Erenkrantz Date: Fri, 16 Aug 2002 04:45:00 +0000 (+0000) Subject: Fix up so we have a better shot at validating. X-Git-Tag: AGB_BEFORE_AAA_CHANGES~245 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e78c19a9f0c78e0a1acc90805eab929c2c4debe5;p=apache Fix up so we have a better shot at validating. Send email to dev@httpd.apache.org if have improvements, etc, etc. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96405 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/thread_safety.html b/docs/manual/developer/thread_safety.html index 2cca7a7623..78fe877e9f 100644 --- a/docs/manual/developer/thread_safety.html +++ b/docs/manual/developer/thread_safety.html @@ -24,8 +24,8 @@

Common 3rd Party Libraries

The following is a list of common libraries that are used by 3rd party Apache modules. You can check to see if your module is using a potentially - unsafe library by using tools such as ldd and nm. For PHP, - for example, try this: + unsafe library by using tools such as ldd and nm. For + PHP, for example, try this:

% ldd libphp4.so
 libsablot.so.0 => /usr/local/lib/libsablot.so.0 (0x401f6000)
 libexpat.so.0 => /usr/lib/libexpat.so.0 (0x402da000)
@@ -46,14 +46,13 @@ libdl.so.2 => /lib/libdl.so.2 (0x40634000)
 libnsl.so.1 => /lib/libnsl.so.1 (0x40637000)
 libc.so.6 => /lib/libc.so.6 (0x4064b000)
 /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
-In addition to these libraries you will need to have a look at any libraries -linked statically into the module. You can use nm to look for individual -symbols in the module.

+

In addition to these libraries you will need to have a look at any libraries +linked statically into the module. You can use nm to look for +individual symbols in the module.

Library List

-

Please drop a note to rasmus@apache.org [need a better contact address here] if - you have additions or corrections to this list.

-

+

Please drop a note to dev@httpd.apache.org if you have additions or + corrections to this list.

LibraryVersionThread Safe?Notes
ASpell/PSpell ?
Berkeley DB3.x,4.x YesBe careful about sharing a connection across threads.