You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2007/09/11 01:38:31 UTC

svn commit: r574406 [14/38] - in /apr/site/trunk/docs/docs: apr-util/0.9/ apr-util/1.2/ apr-util/trunk/ apr/0.9/ apr/1.2/ apr/trunk/

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h-source.html Mon Sep 10 16:37:52 2007
@@ -38,100 +38,88 @@
 <a name="l00016"></a>00016 <span class="comment"> * permissions and limitations under the License.</span>
 <a name="l00017"></a>00017 <span class="comment"> */</span>
 <a name="l00018"></a>00018 
-<a name="l00019"></a>00019 <span class="preprocessor">#ifndef APR_THREAD_POOL_H</span>
-<a name="l00020"></a>00020 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_POOL_H</span>
+<a name="l00019"></a>00019 <span class="preprocessor">#ifndef APU_THREAD_POOL_H</span>
+<a name="l00020"></a>00020 <span class="preprocessor"></span><span class="preprocessor">#define APU_THREAD_POOL_H</span>
 <a name="l00021"></a>00021 <span class="preprocessor"></span>
-<a name="l00022"></a>00022 <span class="preprocessor">#include "apr.h"</span>
+<a name="l00022"></a>00022 <span class="preprocessor">#include "apu.h"</span>
 <a name="l00023"></a>00023 <span class="preprocessor">#include "apr_thread_proc.h"</span>
 <a name="l00024"></a>00024 
 <a name="l00045"></a>00045 <span class="preprocessor">#if APR_HAS_THREADS</span>
 <a name="l00046"></a>00046 <span class="preprocessor"></span>
 <a name="l00047"></a>00047 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00048"></a>00048 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span>
-<a name="l00049"></a>00049 {
-<a name="l00050"></a>00050 <span class="preprocessor">#if 0</span>
-<a name="l00051"></a>00051 <span class="preprocessor"></span>};
-<a name="l00052"></a>00052 <span class="preprocessor">#endif</span>
-<a name="l00053"></a>00053 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
-<a name="l00054"></a>00054 
-<a name="l00062"></a><a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">00062</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>apr_thread_pool <a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a>;
-<a name="l00063"></a>00063 
-<a name="l00064"></a>00064 <span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_LOWEST 0</span>
-<a name="l00065"></a>00065 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_LOW 63</span>
-<a name="l00066"></a>00066 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_NORMAL 127</span>
-<a name="l00067"></a>00067 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_HIGH 191</span>
-<a name="l00068"></a>00068 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_HIGHEST 255</span>
-<a name="l00069"></a>00069 <span class="preprocessor"></span>
-<a name="l00082"></a>00082 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_create(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> ** me,
-<a name="l00083"></a>00083                                                  apr_size_t init_threads,
-<a name="l00084"></a>00084                                                  apr_size_t max_threads,
-<a name="l00085"></a>00085                                                  apr_pool_t * pool);
-<a name="l00086"></a>00086 
-<a name="l00091"></a>00091 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_destroy(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00092"></a>00092 
-<a name="l00102"></a>00102 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_push(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00103"></a>00103                                                apr_thread_start_t func,
-<a name="l00104"></a>00104                                                <span class="keywordtype">void</span> *param,
-<a name="l00105"></a>00105                                                apr_byte_t priority,
-<a name="l00106"></a>00106                                                <span class="keywordtype">void</span> *owner);
-<a name="l00116"></a>00116 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_schedule(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00117"></a>00117                                                    apr_thread_start_t func,
-<a name="l00118"></a>00118                                                    <span class="keywordtype">void</span> *param,
-<a name="l00119"></a>00119                                                    apr_interval_time_t time,
-<a name="l00120"></a>00120                                                    <span class="keywordtype">void</span> *owner);
-<a name="l00121"></a>00121 
-<a name="l00131"></a>00131 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_top(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00132"></a>00132                                               apr_thread_start_t func,
-<a name="l00133"></a>00133                                               <span class="keywordtype">void</span> *param,
-<a name="l00134"></a>00134                                               apr_byte_t priority,
-<a name="l00135"></a>00135                                               <span class="keywordtype">void</span> *owner);
-<a name="l00136"></a>00136 
-<a name="l00146"></a>00146 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_tasks_cancel(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00147"></a>00147                                                        <span class="keywordtype">void</span> *owner);
-<a name="l00148"></a>00148 
-<a name="l00154"></a>00154 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_tasks_count(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00155"></a>00155 
-<a name="l00161"></a>00161 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t)
-<a name="l00162"></a>00162     <a class="code" href="group___a_p_r___util___t_p.html#gc35a3d85218900ffc0dfb51de50f84ba">apr_thread_pool_scheduled_tasks_count</a>(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00163"></a>00163 
-<a name="l00169"></a>00169 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_threads_count(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00170"></a>00170 
-<a name="l00176"></a>00176 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_busy_count(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00177"></a>00177 
-<a name="l00183"></a>00183 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_idle_count(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00184"></a>00184 
-<a name="l00192"></a>00192 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_idle_max_set(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00193"></a>00193                                                      apr_size_t cnt);
-<a name="l00194"></a>00194 
-<a name="l00200"></a>00200 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_idle_max_get(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00201"></a>00201 
-<a name="l00208"></a>00208 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_thread_max_set(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00209"></a>00209                                                        apr_size_t cnt);
-<a name="l00210"></a>00210 
-<a name="l00216"></a>00216 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_thread_max_get(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *
-<a name="l00217"></a>00217                                                        me);
-<a name="l00218"></a>00218 
-<a name="l00225"></a>00225 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_threshold_set(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me,
-<a name="l00226"></a>00226                                                       apr_size_t val);
+<a name="l00048"></a>00048 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">"C"</span> {
+<a name="l00049"></a>00049 <span class="preprocessor">#endif </span><span class="comment">/* __cplusplus */</span>
+<a name="l00050"></a>00050 
+<a name="l00058"></a><a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">00058</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>apr_thread_pool apr_thread_pool_t;
+<a name="l00059"></a>00059 
+<a name="l00060"></a>00060 <span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_LOWEST 0</span>
+<a name="l00061"></a>00061 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_LOW 63</span>
+<a name="l00062"></a>00062 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_NORMAL 127</span>
+<a name="l00063"></a>00063 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_HIGH 191</span>
+<a name="l00064"></a>00064 <span class="preprocessor"></span><span class="preprocessor">#define APR_THREAD_TASK_PRIORITY_HIGHEST 255</span>
+<a name="l00065"></a>00065 <span class="preprocessor"></span>
+<a name="l00077"></a>00077 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#g9c4351f2f93d223c159c1f8e5481830e">apr_thread_pool_create</a>(apr_thread_pool_t **me,
+<a name="l00078"></a>00078                                                  apr_size_t init_threads,
+<a name="l00079"></a>00079                                                  apr_size_t max_threads,
+<a name="l00080"></a>00080                                                  apr_pool_t *pool);
+<a name="l00081"></a>00081 
+<a name="l00086"></a>00086 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#gb06b4fdfc684c88781abf201d53a44eb">apr_thread_pool_destroy</a>(apr_thread_pool_t *me);
+<a name="l00087"></a>00087 
+<a name="l00097"></a>00097 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#gd66fb92679a8f456ff8e8ea1629eb041">apr_thread_pool_push</a>(apr_thread_pool_t *me,
+<a name="l00098"></a>00098                                                apr_thread_start_t func,
+<a name="l00099"></a>00099                                                <span class="keywordtype">void</span> *param,
+<a name="l00100"></a>00100                                                apr_byte_t priority,
+<a name="l00101"></a>00101                                                <span class="keywordtype">void</span> *owner);
+<a name="l00111"></a>00111 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#ga79df50c650442b8d39e169f4e422d3b">apr_thread_pool_schedule</a>(apr_thread_pool_t *me,
+<a name="l00112"></a>00112                                                    apr_thread_start_t func,
+<a name="l00113"></a>00113                                                    <span class="keywordtype">void</span> *param,
+<a name="l00114"></a>00114                                                    apr_interval_time_t time,
+<a name="l00115"></a>00115                                                    <span class="keywordtype">void</span> *owner);
+<a name="l00116"></a>00116 
+<a name="l00126"></a>00126 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#g9acb6218820184f0617eecf56f0d3d84">apr_thread_pool_top</a>(apr_thread_pool_t *me,
+<a name="l00127"></a>00127                                               apr_thread_start_t func,
+<a name="l00128"></a>00128                                               <span class="keywordtype">void</span> *param,
+<a name="l00129"></a>00129                                               apr_byte_t priority,
+<a name="l00130"></a>00130                                               <span class="keywordtype">void</span> *owner);
+<a name="l00131"></a>00131 
+<a name="l00141"></a>00141 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#gee3d7332cf2591f42472e8be0bcbff87">apr_thread_pool_tasks_cancel</a>(apr_thread_pool_t *me,
+<a name="l00142"></a>00142                                                        <span class="keywordtype">void</span> *owner);
+<a name="l00143"></a>00143 
+<a name="l00149"></a>00149 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g4f628cbec0365bb39be715a3c7ff0ec3">apr_thread_pool_tasks_count</a>(apr_thread_pool_t *me);
+<a name="l00150"></a>00150 
+<a name="l00156"></a>00156 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#gc0324b95f6b61dbfb184cbe84c541b42">apr_thread_pool_scheduled_tasks_count</a>(apr_thread_pool_t *me);
+<a name="l00157"></a>00157 
+<a name="l00163"></a>00163 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g9a2642a5a61df9560da438e818d5fad3">apr_thread_pool_threads_count</a>(apr_thread_pool_t *me);
+<a name="l00164"></a>00164 
+<a name="l00170"></a>00170 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#gf839cda931928964f450e3a17d153b24">apr_thread_pool_busy_count</a>(apr_thread_pool_t *me);
+<a name="l00171"></a>00171 
+<a name="l00177"></a>00177 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#ge6c5b87d1fee7150f74baa1008cb00c0">apr_thread_pool_idle_count</a>(apr_thread_pool_t *me);
+<a name="l00178"></a>00178 
+<a name="l00186"></a>00186 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g07c5e4dca589ff024e9adfc8f818c481">apr_thread_pool_idle_max_set</a>(apr_thread_pool_t *me,
+<a name="l00187"></a>00187                                                      apr_size_t cnt);
+<a name="l00188"></a>00188 
+<a name="l00194"></a>00194 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g6dd7fdcaac5cb2848aecd2ee1426d41e">apr_thread_pool_idle_max_get</a>(apr_thread_pool_t *me);
+<a name="l00195"></a>00195 
+<a name="l00202"></a>00202 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#ga352b6337b31ebab796b604240a907e9">apr_thread_pool_thread_max_set</a>(apr_thread_pool_t *me,
+<a name="l00203"></a>00203                                                        apr_size_t cnt);
+<a name="l00204"></a>00204 
+<a name="l00210"></a>00210 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#gca755ea05976c5e1b782dcf40a1ef443">apr_thread_pool_thread_max_get</a>(apr_thread_pool_t *me);
+<a name="l00211"></a>00211 
+<a name="l00218"></a>00218 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g1c35f1bd809dde4300f4a3f77026f446">apr_thread_pool_threshold_set</a>(apr_thread_pool_t *me,
+<a name="l00219"></a>00219                                                       apr_size_t val);
+<a name="l00220"></a>00220 
+<a name="l00226"></a>00226 APU_DECLARE(apr_size_t) <a class="code" href="group___a_p_r___util___t_p.html#g38f4ad8e384cde0e9d32867031c7a935">apr_thread_pool_threshold_get</a>(apr_thread_pool_t * me);
 <a name="l00227"></a>00227 
-<a name="l00233"></a>00233 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_size_t) apr_thread_pool_threshold_get(<a class="code" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> * me);
-<a name="l00234"></a>00234 
-<a name="l00241"></a>00241 <a class="code" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">APR_DECLARE</a>(apr_status_t) apr_thread_pool_task_owner_get(apr_thread_t * thd,
-<a name="l00242"></a>00242                                                          <span class="keywordtype">void</span> **owner);
-<a name="l00243"></a>00243 
-<a name="l00246"></a>00246 <span class="preprocessor">#ifdef __cplusplus</span>
-<a name="l00247"></a>00247 <span class="preprocessor"></span><span class="preprocessor">#if 0</span>
-<a name="l00248"></a>00248 <span class="preprocessor"></span>{
-<a name="l00249"></a>00249 <span class="preprocessor">#endif</span>
-<a name="l00250"></a>00250 <span class="preprocessor"></span>}
-<a name="l00251"></a>00251 <span class="preprocessor">#endif</span>
-<a name="l00252"></a>00252 <span class="preprocessor"></span>
-<a name="l00253"></a>00253 <span class="preprocessor">#endif </span><span class="comment">/* APR_HAS_THREADS */</span>
-<a name="l00254"></a>00254 
-<a name="l00255"></a>00255 <span class="preprocessor">#endif </span><span class="comment">/* APR_THREAD_POOL_H */</span>
-<a name="l00256"></a>00256 
-<a name="l00257"></a>00257 <span class="comment">/* vim: set ts=4 sw=4 et cin tw=80: */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<a name="l00234"></a>00234 APU_DECLARE(apr_status_t) <a class="code" href="group___a_p_r___util___t_p.html#gefbaa0f765567e8e5a79adaaf346755f">apr_thread_pool_task_owner_get</a>(apr_thread_t *thd,
+<a name="l00235"></a>00235                                                          <span class="keywordtype">void</span> **owner);
+<a name="l00236"></a>00236 
+<a name="l00239"></a>00239 <span class="preprocessor">#ifdef __cplusplus</span>
+<a name="l00240"></a>00240 <span class="preprocessor"></span>}
+<a name="l00241"></a>00241 <span class="preprocessor">#endif</span>
+<a name="l00242"></a>00242 <span class="preprocessor"></span>
+<a name="l00243"></a>00243 <span class="preprocessor">#endif </span><span class="comment">/* APR_HAS_THREADS */</span>
+<a name="l00244"></a>00244 <span class="preprocessor">#endif </span><span class="comment">/* !APR_THREAD_POOL_H */</span>
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__thread__pool_8h.html Mon Sep 10 16:37:52 2007
@@ -22,7 +22,7 @@
 </div>
 <h1>include/apr_thread_pool.h File Reference</h1>APR Thread Pool Library. <a href="#_details">More...</a>
 <p>
-<code>#include &quot;apr.h&quot;</code><br>
+<code>#include &quot;apu.h&quot;</code><br>
 <code>#include &quot;apr_thread_proc.h&quot;</code><br>
 
 <p>
@@ -48,83 +48,49 @@
 <tr><td class="memItemLeft" nowrap align="right" valign="top">typedef apr_thread_pool&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a></td></tr>
 
 <tr><td colspan="2"><br><h2>Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g5273cb1fb4ba1765c2ba7bdf014a6a88">APR_DECLARE</a> (apr_status_t) apr_thread_pool_create(<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> **me</td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g9c4351f2f93d223c159c1f8e5481830e">apr_thread_pool_create</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> **me, apr_size_t init_threads, apr_size_t max_threads, apr_pool_t *pool)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g5630a7c1ea1b137ef631c2b134241306">APR_DECLARE</a> (apr_size_t) apr_thread_pool_tasks_count(<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gb06b4fdfc684c88781abf201d53a44eb">apr_thread_pool_destroy</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gc35a3d85218900ffc0dfb51de50f84ba">apr_thread_pool_scheduled_tasks_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gd66fb92679a8f456ff8e8ea1629eb041">apr_thread_pool_push</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_thread_start_t func, void *param, apr_byte_t priority, void *owner)</td></tr>
 
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g1ab4c2703e962d18a6010915d11e1f8b"></a><!-- doxytag: member="apr_thread_pool.h::init_threads" ref="g1ab4c2703e962d18a6010915d11e1f8b" args="" -->
-apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>init_threads</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#ga79df50c650442b8d39e169f4e422d3b">apr_thread_pool_schedule</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_thread_start_t func, void *param, apr_interval_time_t time, void *owner)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g9c85a5872aa7ed0adf9de0285faa32d0"></a><!-- doxytag: member="apr_thread_pool.h::max_threads" ref="g9c85a5872aa7ed0adf9de0285faa32d0" args="" -->
-apr_size_t apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>max_threads</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g9acb6218820184f0617eecf56f0d3d84">apr_thread_pool_top</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_thread_start_t func, void *param, apr_byte_t priority, void *owner)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g1f40e398460db26b18db207db17d7329"></a><!-- doxytag: member="apr_thread_pool.h::pool" ref="g1f40e398460db26b18db207db17d7329" args="" -->
-apr_size_t apr_size_t apr_pool_t *&nbsp;</td><td class="memItemRight" valign="bottom"><b>pool</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gee3d7332cf2591f42472e8be0bcbff87">apr_thread_pool_tasks_cancel</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, void *owner)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g73ea350cd5c272b76e8ca782435bba0e"></a><!-- doxytag: member="apr_thread_pool.h::func" ref="g73ea350cd5c272b76e8ca782435bba0e" args="" -->
-apr_thread_start_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>func</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g4f628cbec0365bb39be715a3c7ff0ec3">apr_thread_pool_tasks_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g1d141c051eced6c52ed35f3e3f5e641c"></a><!-- doxytag: member="apr_thread_pool.h::param" ref="g1d141c051eced6c52ed35f3e3f5e641c" args="" -->
-apr_thread_start_t void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>param</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gc0324b95f6b61dbfb184cbe84c541b42">apr_thread_pool_scheduled_tasks_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g79d19a02611a92b9a79c6887f608a16d"></a><!-- doxytag: member="apr_thread_pool.h::priority" ref="g79d19a02611a92b9a79c6887f608a16d" args="" -->
-apr_thread_start_t void apr_byte_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>priority</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g9a2642a5a61df9560da438e818d5fad3">apr_thread_pool_threads_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga69ae2a487bb8fafe19648591d181ba3"></a><!-- doxytag: member="apr_thread_pool.h::owner" ref="ga69ae2a487bb8fafe19648591d181ba3" args="" -->
-apr_thread_start_t void apr_byte_t <br>
-void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gf839cda931928964f450e3a17d153b24">apr_thread_pool_busy_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g73ea350cd5c272b76e8ca782435bba0e"></a><!-- doxytag: member="apr_thread_pool.h::func" ref="g73ea350cd5c272b76e8ca782435bba0e" args="" -->
-apr_thread_start_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>func</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#ge6c5b87d1fee7150f74baa1008cb00c0">apr_thread_pool_idle_count</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g1d141c051eced6c52ed35f3e3f5e641c"></a><!-- doxytag: member="apr_thread_pool.h::param" ref="g1d141c051eced6c52ed35f3e3f5e641c" args="" -->
-apr_thread_start_t void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>param</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g07c5e4dca589ff024e9adfc8f818c481">apr_thread_pool_idle_max_set</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_size_t cnt)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g089893188117a6e2cf5e324715a5f724"></a><!-- doxytag: member="apr_thread_pool.h::time" ref="g089893188117a6e2cf5e324715a5f724" args="" -->
-apr_thread_start_t void apr_interval_time_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>time</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g6dd7fdcaac5cb2848aecd2ee1426d41e">apr_thread_pool_idle_max_get</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g125925f4ffece884ff137f0de608cb02"></a><!-- doxytag: member="apr_thread_pool.h::owner" ref="g125925f4ffece884ff137f0de608cb02" args="" -->
-apr_thread_start_t void apr_interval_time_t <br>
-void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#ga352b6337b31ebab796b604240a907e9">apr_thread_pool_thread_max_set</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_size_t cnt)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g73ea350cd5c272b76e8ca782435bba0e"></a><!-- doxytag: member="apr_thread_pool.h::func" ref="g73ea350cd5c272b76e8ca782435bba0e" args="" -->
-apr_thread_start_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>func</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gca755ea05976c5e1b782dcf40a1ef443">apr_thread_pool_thread_max_get</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g1d141c051eced6c52ed35f3e3f5e641c"></a><!-- doxytag: member="apr_thread_pool.h::param" ref="g1d141c051eced6c52ed35f3e3f5e641c" args="" -->
-apr_thread_start_t void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>param</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g1c35f1bd809dde4300f4a3f77026f446">apr_thread_pool_threshold_set</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me, apr_size_t val)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g79d19a02611a92b9a79c6887f608a16d"></a><!-- doxytag: member="apr_thread_pool.h::priority" ref="g79d19a02611a92b9a79c6887f608a16d" args="" -->
-apr_thread_start_t void apr_byte_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>priority</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#g38f4ad8e384cde0e9d32867031c7a935">apr_thread_pool_threshold_get</a> (<a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool_t</a> *me)</td></tr>
 
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga69ae2a487bb8fafe19648591d181ba3"></a><!-- doxytag: member="apr_thread_pool.h::owner" ref="ga69ae2a487bb8fafe19648591d181ba3" args="" -->
-apr_thread_start_t void apr_byte_t <br>
-void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g432ddf574279073be3ca2cbd5c7831c5"></a><!-- doxytag: member="apr_thread_pool.h::owner" ref="g432ddf574279073be3ca2cbd5c7831c5" args="" -->
-void *&nbsp;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g3d4818bde9873e42f1ecd0e8190a1909"></a><!-- doxytag: member="apr_thread_pool.h::cnt" ref="g3d4818bde9873e42f1ecd0e8190a1909" args="" -->
-apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>cnt</b></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g3d4818bde9873e42f1ecd0e8190a1909"></a><!-- doxytag: member="apr_thread_pool.h::cnt" ref="g3d4818bde9873e42f1ecd0e8190a1909" args="" -->
-apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>cnt</b></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="gbd1b799f42205dace18be559052dae77"></a><!-- doxytag: member="apr_thread_pool.h::val" ref="gbd1b799f42205dace18be559052dae77" args="" -->
-apr_size_t&nbsp;</td><td class="memItemRight" valign="bottom"><b>val</b></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="g5c994da35cc90f232040f89f1e235dd8"></a><!-- doxytag: member="apr_thread_pool.h::owner" ref="g5c994da35cc90f232040f89f1e235dd8" args="" -->
-void **&nbsp;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr>
+<tr><td class="memItemLeft" nowrap align="right" valign="top">apr_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group___a_p_r___util___t_p.html#gefbaa0f765567e8e5a79adaaf346755f">apr_thread_pool_task_owner_get</a> (apr_thread_t *thd, void **owner)</td></tr>
 
 </table>
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR Thread Pool Library. 
 <p>
-<dl class="remark" compact><dt><b>Remarks:</b></dt><dd>This library implements a thread pool using apr_thread_t. A thread pool is a set of threads that can be created in advance or on demand until a maximum number. When a task is scheduled, the thread pool will find an idle thread to handle the task. In case all existing threads are busy and the number of tasks in the queue is higher than the adjustable threshold, the pool will try to create a new thread to serve the task if the maximum number has not been reached. Otherwise, the task will be put into a queue based on priority, which can be valued from 0 to 255, with higher value been served first. In case there are tasks with the same priority, the new task is put at the top or the bottom depeneds on which function is used to put the task.<p>
-There may be the case that a thread pool can use up the maximum number of threads at peak load, but having those threads idle afterwards. A maximum number of idle threads can be set so that extra idling threads will be terminated to save system resrouces. </dd></dl>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<dl class="remark" compact><dt><b>Remarks:</b></dt><dd>This library implements a thread pool using apr_thread_t. A thread pool is a set of threads that can be created in advance or on demand until a maximum number. When a task is scheduled, the thread pool will find an idle thread to handle the task. In case all existing threads are busy and the number of tasks in the queue is higher than the adjustable threshold, the pool will try to create a new thread to serve the task if the maximum number has not been reached. Otherwise, the task will be put into a queue based on priority, which can be valued from 0 to 255, with higher values being served first. If there are tasks with the same priority, the new task might be put at the top or at the bottom - it depends on which function is used to put the task.<p>
+There may be the case where the thread pool can use up to the maximum number of threads at peak load, but having those threads idle afterwards. A maximum number of idle threads can be set so that the extra idling threads will be terminated to save system resources. </dd></dl>
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h-source.html Mon Sep 10 16:37:52 2007
@@ -126,7 +126,7 @@
 <a name="l00176"></a>00176 <span class="preprocessor">#endif</span>
 <a name="l00177"></a>00177 <span class="preprocessor"></span>
 <a name="l00178"></a>00178 <span class="preprocessor">#endif </span><span class="comment">/* APR_URI_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__uri_8h.html Mon Sep 10 16:37:52 2007
@@ -98,7 +98,7 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR-UTIL URI Routines. 
 <p>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h-source.html Mon Sep 10 16:37:52 2007
@@ -64,7 +64,7 @@
 <a name="l00074"></a>00074 <span class="preprocessor">#endif</span>
 <a name="l00075"></a>00075 <span class="preprocessor"></span>
 <a name="l00076"></a>00076 <span class="preprocessor">#endif </span><span class="comment">/* APR_UUID_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__uuid_8h.html Mon Sep 10 16:37:52 2007
@@ -45,7 +45,7 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR UUID library. 
 <p>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h-source.html Mon Sep 10 16:37:52 2007
@@ -83,7 +83,7 @@
 <a name="l00161"></a>00161 <span class="preprocessor">#endif</span>
 <a name="l00162"></a>00162 <span class="preprocessor"></span>
 <a name="l00163"></a>00163 <span class="preprocessor">#endif  </span><span class="comment">/* ! APR_XLATE_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__xlate_8h.html Mon Sep 10 16:37:52 2007
@@ -52,7 +52,7 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR I18N translation library. 
 <p>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h-source.html Mon Sep 10 16:37:52 2007
@@ -232,7 +232,7 @@
 <a name="l00354"></a>00354 <span class="preprocessor">#endif</span>
 <a name="l00355"></a>00355 <span class="preprocessor"></span>
 <a name="l00356"></a>00356 <span class="preprocessor">#endif </span><span class="comment">/* APR_XML_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apr__xml_8h.html Mon Sep 10 16:37:52 2007
@@ -105,7 +105,7 @@
 <hr><a name="_details"></a><h2>Detailed Description</h2>
 APR-UTIL XML Library. 
 <p>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu_8h-source.html Mon Sep 10 16:37:52 2007
@@ -56,17 +56,17 @@
 <a name="l00072"></a>00072 <span class="preprocessor">#define APU_HAVE_SDBM   1</span>
 <a name="l00073"></a>00073 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_GDBM   0</span>
 <a name="l00074"></a>00074 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_NDBM   0</span>
-<a name="l00075"></a>00075 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_DB     1</span>
+<a name="l00075"></a>00075 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_DB     0</span>
 <a name="l00076"></a>00076 <span class="preprocessor"></span>
 <a name="l00077"></a>00077 <span class="preprocessor">#if APU_HAVE_DB</span>
-<a name="l00078"></a>00078 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_DB_VERSION    4</span>
+<a name="l00078"></a>00078 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_DB_VERSION    0</span>
 <a name="l00079"></a>00079 <span class="preprocessor"></span><span class="preprocessor">#endif </span><span class="comment">/* APU_HAVE_DB */</span>
 <a name="l00080"></a>00080 
 <a name="l00081"></a>00081 <span class="preprocessor">#define APU_HAVE_PGSQL         1</span>
 <a name="l00082"></a>00082 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_MYSQL         1</span>
 <a name="l00083"></a>00083 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_SQLITE3       1</span>
 <a name="l00084"></a>00084 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_SQLITE2       1</span>
-<a name="l00085"></a>00085 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_ORACLE        1</span>
+<a name="l00085"></a>00085 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_ORACLE        0</span>
 <a name="l00086"></a>00086 <span class="preprocessor"></span>
 <a name="l00087"></a>00087 <span class="preprocessor">#define APU_HAVE_APR_ICONV     0</span>
 <a name="l00088"></a>00088 <span class="preprocessor"></span><span class="preprocessor">#define APU_HAVE_ICONV         1</span>
@@ -74,7 +74,7 @@
 <a name="l00090"></a>00090 <span class="preprocessor"></span>
 <a name="l00091"></a>00091 <span class="preprocessor">#endif </span><span class="comment">/* APU_H */</span>
 <a name="l00092"></a>00092 
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__config_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__config_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__config_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__config_8h-source.html Mon Sep 10 16:37:52 2007
@@ -20,17 +20,17 @@
     <li><a href="globals.html"><span>Globals</span></a></li>
   </ul>
 </div>
-<h1>include/private/apu_config.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* include/private/apu_config.h.  Generated by configure.  */</span>
+<h1>include/private/apu_config.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* include/private/apu_config.h.  Generated from apu_config.h.in by configure.  */</span>
 <a name="l00002"></a>00002 <span class="comment">/* include/private/apu_config.h.in.  Generated from configure.in by autoheader.  */</span>
 <a name="l00003"></a>00003 
 <a name="l00004"></a>00004 <span class="comment">/* Define if the system crypt() function is threadsafe */</span>
 <a name="l00005"></a>00005 <span class="comment">/* #undef APU_CRYPT_THREADSAFE */</span>
 <a name="l00006"></a>00006 
 <a name="l00007"></a>00007 <span class="comment">/* Define if DBD drivers are built as DSOs */</span>
-<a name="l00008"></a>00008 <span class="preprocessor">#define APU_DSO_BUILD 1</span>
-<a name="l00009"></a>00009 <span class="preprocessor"></span>
+<a name="l00008"></a>00008 <span class="comment">/* #undef APU_DSO_BUILD */</span>
+<a name="l00009"></a>00009 
 <a name="l00010"></a>00010 <span class="comment">/* Define to be absolute path to DSO directory */</span>
-<a name="l00011"></a>00011 <span class="preprocessor">#define APU_DSO_LIBDIR "/home/groups/devel/run/apache/lib/apr-util-1"</span>
+<a name="l00011"></a>00011 <span class="preprocessor">#define APU_DSO_LIBDIR "/usr/local/apr/lib/apr-util-1"</span>
 <a name="l00012"></a>00012 <span class="preprocessor"></span>
 <a name="l00013"></a>00013 <span class="comment">/* Define that we have OpenSSL available */</span>
 <a name="l00014"></a>00014 <span class="comment">/* #undef APU_HAVE_OPENSSL */</span>
@@ -53,75 +53,75 @@
 <a name="l00031"></a>00031 <span class="comment">/* Define to 1 if you have the `crypt_r' function. */</span>
 <a name="l00032"></a>00032 <span class="preprocessor">#define HAVE_CRYPT_R 1</span>
 <a name="l00033"></a>00033 <span class="preprocessor"></span>
-<a name="l00034"></a>00034 <span class="comment">/* Define to 1 if you have the file `AC_File'. */</span>
-<a name="l00035"></a>00035 <span class="preprocessor">#define HAVE_DBD_APR_DBD_MYSQL_C 1</span>
+<a name="l00034"></a>00034 <span class="comment">/* Define if expat.h is available */</span>
+<a name="l00035"></a>00035 <span class="preprocessor">#define HAVE_EXPAT_H 1</span>
 <a name="l00036"></a>00036 <span class="preprocessor"></span>
-<a name="l00037"></a>00037 <span class="comment">/* Define if expat.h is available */</span>
-<a name="l00038"></a>00038 <span class="preprocessor">#define HAVE_EXPAT_H 1</span>
+<a name="l00037"></a>00037 <span class="comment">/* Define to 1 if you have the &lt;iconv.h&gt; header file. */</span>
+<a name="l00038"></a>00038 <span class="preprocessor">#define HAVE_ICONV_H 1</span>
 <a name="l00039"></a>00039 <span class="preprocessor"></span>
-<a name="l00040"></a>00040 <span class="comment">/* Define to 1 if you have the &lt;iconv.h&gt; header file. */</span>
-<a name="l00041"></a>00041 <span class="preprocessor">#define HAVE_ICONV_H 1</span>
+<a name="l00040"></a>00040 <span class="comment">/* Define to 1 if you have the &lt;inttypes.h&gt; header file. */</span>
+<a name="l00041"></a>00041 <span class="preprocessor">#define HAVE_INTTYPES_H 1</span>
 <a name="l00042"></a>00042 <span class="preprocessor"></span>
-<a name="l00043"></a>00043 <span class="comment">/* Define to 1 if you have the &lt;inttypes.h&gt; header file. */</span>
-<a name="l00044"></a>00044 <span class="preprocessor">#define HAVE_INTTYPES_H 1</span>
+<a name="l00043"></a>00043 <span class="comment">/* Define to 1 if you have the &lt;langinfo.h&gt; header file. */</span>
+<a name="l00044"></a>00044 <span class="preprocessor">#define HAVE_LANGINFO_H 1</span>
 <a name="l00045"></a>00045 <span class="preprocessor"></span>
-<a name="l00046"></a>00046 <span class="comment">/* Define to 1 if you have the &lt;langinfo.h&gt; header file. */</span>
-<a name="l00047"></a>00047 <span class="preprocessor">#define HAVE_LANGINFO_H 1</span>
-<a name="l00048"></a>00048 <span class="preprocessor"></span>
-<a name="l00049"></a>00049 <span class="comment">/* Define to 1 if you have the &lt;lber.h&gt; header file. */</span>
-<a name="l00050"></a>00050 <span class="comment">/* #undef HAVE_LBER_H */</span>
+<a name="l00046"></a>00046 <span class="comment">/* Define to 1 if you have the &lt;lber.h&gt; header file. */</span>
+<a name="l00047"></a>00047 <span class="comment">/* #undef HAVE_LBER_H */</span>
+<a name="l00048"></a>00048 
+<a name="l00049"></a>00049 <span class="comment">/* Defined if ldap.h is present */</span>
+<a name="l00050"></a>00050 <span class="comment">/* #undef HAVE_LDAP_H */</span>
 <a name="l00051"></a>00051 
-<a name="l00052"></a>00052 <span class="comment">/* Defined if ldap.h is present */</span>
-<a name="l00053"></a>00053 <span class="comment">/* #undef HAVE_LDAP_H */</span>
+<a name="l00052"></a>00052 <span class="comment">/* Define to 1 if you have the &lt;ldap_ssl.h&gt; header file. */</span>
+<a name="l00053"></a>00053 <span class="comment">/* #undef HAVE_LDAP_SSL_H */</span>
 <a name="l00054"></a>00054 
-<a name="l00055"></a>00055 <span class="comment">/* Define to 1 if you have the &lt;ldap_ssl.h&gt; header file. */</span>
-<a name="l00056"></a>00056 <span class="comment">/* #undef HAVE_LDAP_SSL_H */</span>
+<a name="l00055"></a>00055 <span class="comment">/* Define to 1 if you have the `lber' library (-llber). */</span>
+<a name="l00056"></a>00056 <span class="comment">/* #undef HAVE_LIBLBER */</span>
 <a name="l00057"></a>00057 
-<a name="l00058"></a>00058 <span class="comment">/* Define to 1 if you have the `lber' library (-llber). */</span>
-<a name="l00059"></a>00059 <span class="comment">/* #undef HAVE_LIBLBER */</span>
-<a name="l00060"></a>00060 
-<a name="l00061"></a>00061 <span class="comment">/* Define to 1 if you have the &lt;libpq-fe.h&gt; header file. */</span>
-<a name="l00062"></a>00062 <span class="preprocessor">#define HAVE_LIBPQ_FE_H 1</span>
+<a name="l00058"></a>00058 <span class="comment">/* Define to 1 if you have the &lt;libpq-fe.h&gt; header file. */</span>
+<a name="l00059"></a>00059 <span class="preprocessor">#define HAVE_LIBPQ_FE_H 1</span>
+<a name="l00060"></a>00060 <span class="preprocessor"></span>
+<a name="l00061"></a>00061 <span class="comment">/* Define to 1 if you have the &lt;memory.h&gt; header file. */</span>
+<a name="l00062"></a>00062 <span class="preprocessor">#define HAVE_MEMORY_H 1</span>
 <a name="l00063"></a>00063 <span class="preprocessor"></span>
-<a name="l00064"></a>00064 <span class="comment">/* Define to 1 if you have the &lt;memory.h&gt; header file. */</span>
-<a name="l00065"></a>00065 <span class="preprocessor">#define HAVE_MEMORY_H 1</span>
+<a name="l00064"></a>00064 <span class="comment">/* Define to 1 if you have the &lt;mysql.h&gt; header file. */</span>
+<a name="l00065"></a>00065 <span class="preprocessor">#define HAVE_MYSQL_H 1</span>
 <a name="l00066"></a>00066 <span class="preprocessor"></span>
-<a name="l00067"></a>00067 <span class="comment">/* Define to 1 if you have the &lt;mysql.h&gt; header file. */</span>
-<a name="l00068"></a>00068 <span class="preprocessor">#define HAVE_MYSQL_H 1</span>
-<a name="l00069"></a>00069 <span class="preprocessor"></span>
-<a name="l00070"></a>00070 <span class="comment">/* Define to 1 if you have the &lt;mysql/mysql.h&gt; header file. */</span>
-<a name="l00071"></a>00071 <span class="comment">/* #undef HAVE_MYSQL_MYSQL_H */</span>
-<a name="l00072"></a>00072 
-<a name="l00073"></a>00073 <span class="comment">/* Define to 1 if you have the `nl_langinfo' function. */</span>
-<a name="l00074"></a>00074 <span class="preprocessor">#define HAVE_NL_LANGINFO 1</span>
-<a name="l00075"></a>00075 <span class="preprocessor"></span>
-<a name="l00076"></a>00076 <span class="comment">/* Define to 1 if you have the &lt;oci.h&gt; header file. */</span>
-<a name="l00077"></a>00077 <span class="preprocessor">#define HAVE_OCI_H 1</span>
-<a name="l00078"></a>00078 <span class="preprocessor"></span>
-<a name="l00079"></a>00079 <span class="comment">/* Define to 1 if you have the &lt;openssl/x509.h&gt; header file. */</span>
-<a name="l00080"></a>00080 <span class="comment">/* #undef HAVE_OPENSSL_X509_H */</span>
+<a name="l00067"></a>00067 <span class="comment">/* Define to 1 if you have the &lt;mysql/mysql.h&gt; header file. */</span>
+<a name="l00068"></a>00068 <span class="comment">/* #undef HAVE_MYSQL_MYSQL_H */</span>
+<a name="l00069"></a>00069 
+<a name="l00070"></a>00070 <span class="comment">/* Define to 1 if you have the `nl_langinfo' function. */</span>
+<a name="l00071"></a>00071 <span class="preprocessor">#define HAVE_NL_LANGINFO 1</span>
+<a name="l00072"></a>00072 <span class="preprocessor"></span>
+<a name="l00073"></a>00073 <span class="comment">/* Define to 1 if you have the &lt;oci.h&gt; header file. */</span>
+<a name="l00074"></a>00074 <span class="comment">/* #undef HAVE_OCI_H */</span>
+<a name="l00075"></a>00075 
+<a name="l00076"></a>00076 <span class="comment">/* Define to 1 if you have the &lt;openssl/x509.h&gt; header file. */</span>
+<a name="l00077"></a>00077 <span class="comment">/* #undef HAVE_OPENSSL_X509_H */</span>
+<a name="l00078"></a>00078 
+<a name="l00079"></a>00079 <span class="comment">/* Define to 1 if you have the &lt;postgresql/libpq-fe.h&gt; header file. */</span>
+<a name="l00080"></a>00080 <span class="comment">/* #undef HAVE_POSTGRESQL_LIBPQ_FE_H */</span>
 <a name="l00081"></a>00081 
-<a name="l00082"></a>00082 <span class="comment">/* Define to 1 if you have the &lt;postgresql/libpq-fe.h&gt; header file. */</span>
-<a name="l00083"></a>00083 <span class="comment">/* #undef HAVE_POSTGRESQL_LIBPQ_FE_H */</span>
-<a name="l00084"></a>00084 
-<a name="l00085"></a>00085 <span class="comment">/* Define to 1 if you have the &lt;sqlite3.h&gt; header file. */</span>
-<a name="l00086"></a>00086 <span class="preprocessor">#define HAVE_SQLITE3_H 1</span>
+<a name="l00082"></a>00082 <span class="comment">/* Define to 1 if you have the &lt;sqlite3.h&gt; header file. */</span>
+<a name="l00083"></a>00083 <span class="preprocessor">#define HAVE_SQLITE3_H 1</span>
+<a name="l00084"></a>00084 <span class="preprocessor"></span>
+<a name="l00085"></a>00085 <span class="comment">/* Define to 1 if you have the &lt;sqlite.h&gt; header file. */</span>
+<a name="l00086"></a>00086 <span class="preprocessor">#define HAVE_SQLITE_H 1</span>
 <a name="l00087"></a>00087 <span class="preprocessor"></span>
-<a name="l00088"></a>00088 <span class="comment">/* Define to 1 if you have the &lt;sqlite.h&gt; header file. */</span>
-<a name="l00089"></a>00089 <span class="preprocessor">#define HAVE_SQLITE_H 1</span>
+<a name="l00088"></a>00088 <span class="comment">/* Define to 1 if you have the &lt;stdint.h&gt; header file. */</span>
+<a name="l00089"></a>00089 <span class="preprocessor">#define HAVE_STDINT_H 1</span>
 <a name="l00090"></a>00090 <span class="preprocessor"></span>
-<a name="l00091"></a>00091 <span class="comment">/* Define to 1 if you have the &lt;stdint.h&gt; header file. */</span>
-<a name="l00092"></a>00092 <span class="preprocessor">#define HAVE_STDINT_H 1</span>
+<a name="l00091"></a>00091 <span class="comment">/* Define to 1 if you have the &lt;stdlib.h&gt; header file. */</span>
+<a name="l00092"></a>00092 <span class="preprocessor">#define HAVE_STDLIB_H 1</span>
 <a name="l00093"></a>00093 <span class="preprocessor"></span>
-<a name="l00094"></a>00094 <span class="comment">/* Define to 1 if you have the &lt;stdlib.h&gt; header file. */</span>
-<a name="l00095"></a>00095 <span class="preprocessor">#define HAVE_STDLIB_H 1</span>
+<a name="l00094"></a>00094 <span class="comment">/* Define to 1 if you have the &lt;strings.h&gt; header file. */</span>
+<a name="l00095"></a>00095 <span class="preprocessor">#define HAVE_STRINGS_H 1</span>
 <a name="l00096"></a>00096 <span class="preprocessor"></span>
-<a name="l00097"></a>00097 <span class="comment">/* Define to 1 if you have the &lt;strings.h&gt; header file. */</span>
-<a name="l00098"></a>00098 <span class="preprocessor">#define HAVE_STRINGS_H 1</span>
+<a name="l00097"></a>00097 <span class="comment">/* Define to 1 if you have the &lt;string.h&gt; header file. */</span>
+<a name="l00098"></a>00098 <span class="preprocessor">#define HAVE_STRING_H 1</span>
 <a name="l00099"></a>00099 <span class="preprocessor"></span>
-<a name="l00100"></a>00100 <span class="comment">/* Define to 1 if you have the &lt;string.h&gt; header file. */</span>
-<a name="l00101"></a>00101 <span class="preprocessor">#define HAVE_STRING_H 1</span>
-<a name="l00102"></a>00102 <span class="preprocessor"></span>
+<a name="l00100"></a>00100 <span class="comment">/* Define to 1 if you have the &lt;sybdb.h&gt; header file. */</span>
+<a name="l00101"></a>00101 <span class="comment">/* #undef HAVE_SYBDB_H */</span>
+<a name="l00102"></a>00102 
 <a name="l00103"></a>00103 <span class="comment">/* Define to 1 if you have the &lt;sys/stat.h&gt; header file. */</span>
 <a name="l00104"></a>00104 <span class="preprocessor">#define HAVE_SYS_STAT_H 1</span>
 <a name="l00105"></a>00105 <span class="preprocessor"></span>
@@ -157,7 +157,7 @@
 <a name="l00135"></a>00135 <span class="preprocessor"></span>
 <a name="l00136"></a>00136 <span class="comment">/* Define to 1 if you have the ANSI C header files. */</span>
 <a name="l00137"></a>00137 <span class="preprocessor">#define STDC_HEADERS 1</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__select__dbm_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__select__dbm_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__select__dbm_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__select__dbm_8h-source.html Mon Sep 10 16:37:52 2007
@@ -48,7 +48,7 @@
 <a name="l00026"></a>00026 <span class="preprocessor"></span><span class="preprocessor">#define APU_USE_DB      0</span>
 <a name="l00027"></a>00027 <span class="preprocessor"></span>
 <a name="l00028"></a>00028 <span class="preprocessor">#endif  </span><span class="comment">/* !APU_SELECT_DBM_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h-source.html Mon Sep 10 16:37:52 2007
@@ -106,7 +106,7 @@
 <a name="l00132"></a>00132 <span class="preprocessor">#endif </span><span class="comment">/* ndef APU_VERSION_ONLY */</span>
 <a name="l00133"></a>00133 
 <a name="l00134"></a>00134 <span class="preprocessor">#endif </span><span class="comment">/* ndef APU_VERSION_H */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__version_8h.html Mon Sep 10 16:37:52 2007
@@ -260,7 +260,7 @@
 Return APU's version information as a string. 
 </div>
 </div><p>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h-source.html Mon Sep 10 16:37:52 2007
@@ -43,14 +43,14 @@
 <a name="l00042"></a>00042 <span class="preprocessor">#ifdef APU_WANT_DB</span>
 <a name="l00043"></a>00043 <span class="preprocessor"></span>
 <a name="l00044"></a>00044 <span class="preprocessor">#if APU_HAVE_DB</span>
-<a name="l00045"></a>00045 <span class="preprocessor"></span><span class="preprocessor">#include &lt;db4/db.h&gt;</span>
+<a name="l00045"></a>00045 <span class="preprocessor"></span><span class="preprocessor">#include &lt;db.h&gt;</span>
 <a name="l00046"></a>00046 <span class="preprocessor">#endif</span>
 <a name="l00047"></a>00047 <span class="preprocessor"></span>
 <a name="l00048"></a>00048 <span class="preprocessor">#undef APU_WANT_DB</span>
 <a name="l00049"></a>00049 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
 <a name="l00050"></a>00050 <span class="preprocessor"></span>
 <a name="l00051"></a>00051 <span class="comment">/* --------------------------------------------------------------------- */</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/apu__want_8h.html Mon Sep 10 16:37:52 2007
@@ -33,14 +33,14 @@
 <p>
 <pre>
  Features:</pre><p>
-<pre>   APU_WANT_DB:       &lt;db4/db.h&gt;</pre><p>
+<pre>   APU_WANT_DB:       &lt;db.h&gt;</pre><p>
 <pre> Typical usage:</pre><p>
 <pre>   define APU_WANT_DB
    include "apu_want.h"</pre><p>
 <pre> The appropriate headers will be included.</pre><p>
 <pre> Note: it is safe to use this in a header (it won't interfere with other
        headers' or source files' use of <a class="el" href="apu__want_8h.html" title="APR Standard Headers Support.">apu_want.h</a>)
- </pre> <hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+ </pre> <hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/ascii_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/ascii_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/ascii_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/ascii_8h-source.html Mon Sep 10 16:37:52 2007
@@ -106,7 +106,7 @@
 <a name="l00084"></a>00084 <span class="preprocessor"></span><span class="preprocessor">#define ASCII_LSQB 0x5B</span>
 <a name="l00085"></a>00085 <span class="preprocessor"></span><span class="preprocessor">#define ASCII_RSQB 0x5D</span>
 <a name="l00086"></a>00086 <span class="preprocessor"></span><span class="preprocessor">#define ASCII_UNDERSCORE 0x5F</span>
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/asciitab_8h-source.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/asciitab_8h-source.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/asciitab_8h-source.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/asciitab_8h-source.html Mon Sep 10 16:37:52 2007
@@ -57,7 +57,7 @@
 <a name="l00035"></a>00035 <span class="comment">/* 0x74 */</span> BT_NMSTRT, BT_NMSTRT, BT_NMSTRT, BT_NMSTRT,
 <a name="l00036"></a>00036 <span class="comment">/* 0x78 */</span> BT_NMSTRT, BT_NMSTRT, BT_NMSTRT, BT_OTHER,
 <a name="l00037"></a>00037 <span class="comment">/* 0x7C */</span> BT_VERBAR, BT_OTHER, BT_OTHER, BT_OTHER,
-</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:29 2007 for Apache Portable Runtime Utility Library by&nbsp;
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:50 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/files.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/files.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/files.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/files.html Mon Sep 10 16:37:52 2007
@@ -81,7 +81,7 @@
   <tr><td class="indexkey">xml/expat/lib/<b>xmltok.h</b> <a href="xmltok_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
   <tr><td class="indexkey">xml/expat/lib/<b>xmltok_impl.h</b> <a href="xmltok__impl_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
 </table>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/functions.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/functions.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/functions.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/functions.html Mon Sep 10 16:37:52 2007
@@ -345,7 +345,7 @@
 : <a class="el" href="structapr__md4__ctx__t.html#e4dd6785ef4bf0e04b37d566af786554">apr_md4_ctx_t</a>
 , <a class="el" href="structapr__md5__ctx__t.html#391a62bc9e7fada71d03f786df4f49ba">apr_md5_ctx_t</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/functions_eval.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/functions_eval.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/functions_eval.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/functions_eval.html Mon Sep 10 16:37:52 2007
@@ -46,7 +46,7 @@
 <li>APR_BUCKET_METADATA
 : <a class="el" href="structapr__bucket__type__t.html#117f85e4a58c5e7d7e373705ad138f859bf38b4eb3ea41c4af230432ac7a5fb1">apr_bucket_type_t</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/functions_func.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/functions_func.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/functions_func.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/functions_func.html Mon Sep 10 16:37:52 2007
@@ -36,7 +36,7 @@
 <li>APR_RING_HEAD()
 : <a class="el" href="structapr__bucket__brigade.html#76a313afc83dd161916f3f9b83eea734">apr_bucket_brigade</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/functions_vars.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/functions_vars.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/functions_vars.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/functions_vars.html Mon Sep 10 16:37:52 2007
@@ -327,7 +327,7 @@
 : <a class="el" href="structapr__md4__ctx__t.html#e4dd6785ef4bf0e04b37d566af786554">apr_md4_ctx_t</a>
 , <a class="el" href="structapr__md5__ctx__t.html#391a62bc9e7fada71d03f786df4f49ba">apr_md5_ctx_t</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/globals.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/globals.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/globals.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/globals.html Mon Sep 10 16:37:52 2007
@@ -348,8 +348,7 @@
 <li>apr_dbm_t
 : <a class="el" href="group___a_p_r___util___d_b_m.html#g47f6ff771143ed7b7987c686c20c8536">apr_dbm.h</a>
 <li>APR_DECLARE()
-: <a class="el" href="group___a_p_r___util___t_p.html#g5630a7c1ea1b137ef631c2b134241306">apr_thread_pool.h</a>
-, <a class="el" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">apr_memcache.h</a>
+: <a class="el" href="group___a_p_r___util___m_c.html#ge634a2f9e292590a52754fb2fd036d17">apr_memcache.h</a>
 <li>apr_dynamic_fn_register()
 : <a class="el" href="group___a_p_r___util___opt.html#ga9c7d3cc32128521274543c384e9698d">apr_optional.h</a>
 <li>apr_hook_debug_current
@@ -532,10 +531,44 @@
 : <a class="el" href="group___a_p_r___util___x_m_l.html#gf63dcaeeda623045860396304007aa49">apr_xml.h</a>
 <li>apr_text_header
 : <a class="el" href="group___a_p_r___util___x_m_l.html#gafc6d5ebd59b64a27146cf938a4086e0">apr_xml.h</a>
+<li>apr_thread_pool_busy_count()
+: <a class="el" href="group___a_p_r___util___t_p.html#gf839cda931928964f450e3a17d153b24">apr_thread_pool.h</a>
+<li>apr_thread_pool_create()
+: <a class="el" href="group___a_p_r___util___t_p.html#g9c4351f2f93d223c159c1f8e5481830e">apr_thread_pool.h</a>
+<li>apr_thread_pool_destroy()
+: <a class="el" href="group___a_p_r___util___t_p.html#gb06b4fdfc684c88781abf201d53a44eb">apr_thread_pool.h</a>
+<li>apr_thread_pool_idle_count()
+: <a class="el" href="group___a_p_r___util___t_p.html#ge6c5b87d1fee7150f74baa1008cb00c0">apr_thread_pool.h</a>
+<li>apr_thread_pool_idle_max_get()
+: <a class="el" href="group___a_p_r___util___t_p.html#g6dd7fdcaac5cb2848aecd2ee1426d41e">apr_thread_pool.h</a>
+<li>apr_thread_pool_idle_max_set()
+: <a class="el" href="group___a_p_r___util___t_p.html#g07c5e4dca589ff024e9adfc8f818c481">apr_thread_pool.h</a>
+<li>apr_thread_pool_push()
+: <a class="el" href="group___a_p_r___util___t_p.html#gd66fb92679a8f456ff8e8ea1629eb041">apr_thread_pool.h</a>
+<li>apr_thread_pool_schedule()
+: <a class="el" href="group___a_p_r___util___t_p.html#ga79df50c650442b8d39e169f4e422d3b">apr_thread_pool.h</a>
 <li>apr_thread_pool_scheduled_tasks_count()
-: <a class="el" href="group___a_p_r___util___t_p.html#gc35a3d85218900ffc0dfb51de50f84ba">apr_thread_pool.h</a>
+: <a class="el" href="group___a_p_r___util___t_p.html#gc0324b95f6b61dbfb184cbe84c541b42">apr_thread_pool.h</a>
 <li>apr_thread_pool_t
 : <a class="el" href="group___a_p_r___util___t_p.html#gb31b68a03a0d5eec3e1879c253d3b620">apr_thread_pool.h</a>
+<li>apr_thread_pool_task_owner_get()
+: <a class="el" href="group___a_p_r___util___t_p.html#gefbaa0f765567e8e5a79adaaf346755f">apr_thread_pool.h</a>
+<li>apr_thread_pool_tasks_cancel()
+: <a class="el" href="group___a_p_r___util___t_p.html#gee3d7332cf2591f42472e8be0bcbff87">apr_thread_pool.h</a>
+<li>apr_thread_pool_tasks_count()
+: <a class="el" href="group___a_p_r___util___t_p.html#g4f628cbec0365bb39be715a3c7ff0ec3">apr_thread_pool.h</a>
+<li>apr_thread_pool_thread_max_get()
+: <a class="el" href="group___a_p_r___util___t_p.html#gca755ea05976c5e1b782dcf40a1ef443">apr_thread_pool.h</a>
+<li>apr_thread_pool_thread_max_set()
+: <a class="el" href="group___a_p_r___util___t_p.html#ga352b6337b31ebab796b604240a907e9">apr_thread_pool.h</a>
+<li>apr_thread_pool_threads_count()
+: <a class="el" href="group___a_p_r___util___t_p.html#g9a2642a5a61df9560da438e818d5fad3">apr_thread_pool.h</a>
+<li>apr_thread_pool_threshold_get()
+: <a class="el" href="group___a_p_r___util___t_p.html#g38f4ad8e384cde0e9d32867031c7a935">apr_thread_pool.h</a>
+<li>apr_thread_pool_threshold_set()
+: <a class="el" href="group___a_p_r___util___t_p.html#g1c35f1bd809dde4300f4a3f77026f446">apr_thread_pool.h</a>
+<li>apr_thread_pool_top()
+: <a class="el" href="group___a_p_r___util___t_p.html#g9acb6218820184f0617eecf56f0d3d84">apr_thread_pool.h</a>
 <li>apr_uri_parse()
 : <a class="el" href="group___a_p_r___util___u_r_i.html#gbbef816426a66595caae8b60e92ee43c">apr_uri.h</a>
 <li>apr_uri_parse_hostinfo()
@@ -597,7 +630,7 @@
 <li>apu_version_string()
 : <a class="el" href="apu__version_8h.html#50777ba300ca00840f7fce3bf6c1e917">apu_version.h</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>

Modified: apr/site/trunk/docs/docs/apr-util/trunk/globals_eval.html
URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/globals_eval.html?rev=574406&r1=574405&r2=574406&view=diff
==============================================================================
--- apr/site/trunk/docs/docs/apr-util/trunk/globals_eval.html (original)
+++ apr/site/trunk/docs/docs/apr-util/trunk/globals_eval.html Mon Sep 10 16:37:52 2007
@@ -89,7 +89,7 @@
 <li>APR_SSL_FACTORY_SERVER
 : <a class="el" href="group___a_p_r___util___s_s_l.html#gg95d472fa6e22b3537452fed38d7df927d90fa5e610514ba0066343da5fc53ef4">apr_ssl.h</a>
 </ul>
-<hr size="1"><address style="text-align: right;"><small>Generated on Mon Jun 25 09:23:30 2007 for Apache Portable Runtime Utility Library by&nbsp;
+<hr size="1"><address style="text-align: right;"><small>Generated on Tue Sep 11 09:26:51 2007 for Apache Portable Runtime Utility Library by&nbsp;
 <a href="http://www.doxygen.org/index.html">
 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.2 </small></address>
 </body>