]> granicus.if.org Git - apache/commitdiff
fix html errors
authorAndre Malo <nd@apache.org>
Sun, 15 Dec 2002 23:05:27 +0000 (23:05 +0000)
committerAndre Malo <nd@apache.org>
Sun, 15 Dec 2002 23:05:27 +0000 (23:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97938 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/filters.html
docs/manual/developer/thread_safety.html

index 9f77b17d97c6fa864aeb82bb5fd2c5aeaacdbd46..d5ea5911b01d46e9cfa973bb5814996c252b9bb4 100644 (file)
@@ -16,7 +16,7 @@
     <h1>How filters work in Apache 2.0</h1>
 
     <p>Warning - this is a cut 'n paste job from an email:
-       &lt022501c1c529$f63a9550$7f00000a@KOJ&gt</p>
+       &lt;022501c1c529$f63a9550$7f00000a@KOJ&gt;</p>
 
 <pre>
 There are three basic filter types (each of these is actually broken
index 4656b58cd4a4c3bff0557a9f016bcb0bb1e18b13..ad6e73c0e4fb52f907a7e0931e81ec34960cfa8a 100644 (file)
       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:</p>
+
 <pre>#define errno (*(__errno_location()))</pre>
-      which means that accessing errno will call __errno_location() which is provided by the libc.  Setting
+
+      <p>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