From: Justin Erenkrantz
Date: Fri, 16 Aug 2002 06:53:54 +0000 (+0000)
Subject: Add note on c-client based on evidence from c-client mailing list archives
X-Git-Tag: AGB_BEFORE_AAA_CHANGES~237
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac5bc7202e67ed68eb41f31fa484da704f398c85;p=apache
Add note on c-client based on evidence from c-client mailing list archives
and, in particular, Mark Crispin's posts.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96413 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/developer/thread_safety.html b/docs/manual/developer/thread_safety.html
index db02212dc7..960dc47eee 100644
--- a/docs/manual/developer/thread_safety.html
+++ b/docs/manual/developer/thread_safety.html
@@ -87,8 +87,8 @@ individual symbols in the module.
C-Client |
|
- ? |
- |
+ Perhaps |
+ c-client uses strtok() and gethostbyname() which are not thread-safe on most C library implementations. c-client's static data is meant to be shared across threads. If strtok() and gethostbyname() are thread-safe on your OS, c-client may be thread-safe. |
cpdflib |
@@ -159,8 +159,11 @@ individual symbols in the module.
libmysqlclient |
|
- ? |
- |
+ Yes |
+ Use mysqlclient_r library variant to ensure thread-safety. For
+ more information, please read http://www.mysql.com/doc/en/Threaded_clients.html. |
Ming |