summaryrefslogtreecommitdiff
path: root/include/apr_general.h
diff options
context:
space:
mode:
authorianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2002-02-15 21:15:44 +0000
committerianh <ianh@13f79535-47bb-0310-9956-ffa450edef68>2002-02-15 21:15:44 +0000
commitff8c777e495251d19305cf5156e14f153a510115 (patch)
tree5cbda79c9ee039ee34c7a06c1016e1cf8094dd47 /include/apr_general.h
parent500a90827136e2f34fc1059e78b5a0a7f5788a2e (diff)
downloadlibapr-ff8c777e495251d19305cf5156e14f153a510115.tar.gz
some more Doxygen goodness
still alot more #defines to go git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62990 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_general.h')
-rw-r--r--include/apr_general.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/apr_general.h b/include/apr_general.h
index d3030d0c9..6d3664640 100644
--- a/include/apr_general.h
+++ b/include/apr_general.h
@@ -76,20 +76,34 @@ extern "C" {
* @{
*/
+/** FALSE */
#ifndef FALSE
#define FALSE 0
#endif
+/** TRUE */
#ifndef TRUE
#define TRUE (!FALSE)
#endif
+/**
+ * The Win32 call WaitForMultipleObjects will only allow you to wait for
+ * a maximum of MAXIMUM_WAIT_OBJECTS (current 64). Since the threading
+ * model in the multithreaded version of apache wants to use this call,
+ * we are restricted to a maximum of 64 threads.
+ * @see wait_for_many_objects for a way to increase this size
+ */
+
#ifndef MAXIMUM_WAIT_OBJECTS
#define MAXIMUM_WAIT_OBJECTS 64
#endif
+/** a space */
#define APR_ASCII_BLANK '\040'
+/** a carrige return */
#define APR_ASCII_CR '\015'
+/** a line feed */
#define APR_ASCII_LF '\012'
+/** a tab */
#define APR_ASCII_TAB '\011'
typedef int apr_signum_t;