From: Andre Malo Date: Sun, 15 Dec 2002 23:05:27 +0000 (+0000) Subject: fix html errors X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9237542a998e2390044799c923d47d79451484e2;p=apache fix html errors git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97938 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/filters.html b/docs/manual/developer/filters.html index 9f77b17d97..d5ea5911b0 100644 --- a/docs/manual/developer/filters.html +++ b/docs/manual/developer/filters.html @@ -16,7 +16,7 @@

How filters work in Apache 2.0

Warning - this is a cut 'n paste job from an email: - <022501c1c529$f63a9550$7f00000a@KOJ>

+ <022501c1c529$f63a9550$7f00000a@KOJ>

 There are three basic filter types (each of these is actually broken
diff --git a/docs/manual/developer/thread_safety.html b/docs/manual/developer/thread_safety.html
index 4656b58cd4..ad6e73c0e4 100644
--- a/docs/manual/developer/thread_safety.html
+++ b/docs/manual/developer/thread_safety.html
@@ -50,9 +50,11 @@
       If one thread calls a low-level function that sets errno and then another thread checks it, we
       are bleeding error numbers from one thread into another.  To solve this, make sure your module
       or library defines _REENTRANT or is compiled with -D_REENTRANT.  This will make errno a per-thread
-      variable and should hopefully be transparent to the code.  It does this by doing something like this:
+      variable and should hopefully be transparent to the code.  It does this by doing something like this:

+
#define errno (*(__errno_location()))
- which means that accessing errno will call __errno_location() which is provided by the libc. Setting + +

which means that accessing errno will call __errno_location() which is provided by the libc. Setting _REENTRANT also forces redefinition of some other functions to their *_r equivalents and sometimes changes the common getc/putc macros into safer function calls. Check your libc documentation for specifics. Instead of, or in addition to _REENTRANT the symbols that may affect this are