summaryrefslogtreecommitdiff
path: root/include/apr_poll.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2003-03-05 21:22:26 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2003-03-05 21:22:26 +0000
commit26a1251cd50b032176c0c5d9bb6626c1a2b7bb52 (patch)
tree665a1cf9958bf86499a3a742b654fe391c3a5705 /include/apr_poll.h
parent1f3331ec7ac24dc7dbefd1ffcd179c7a5f1fbfc0 (diff)
downloadapr-26a1251cd50b032176c0c5d9bb6626c1a2b7bb52.tar.gz
Rebalance our exposed headers such that everything is nested properly
between extern "C" blocks and doxygen blocks, that we never include other headers within our own header's extern "C" block, that we always tag the entire file contents for doxygen (within the APR_HEADER_H only-once block), and generally clean up doxygen so that it is all consistent and generates respectable (although not yet 'great') results. Major TODO after 0.9.2 releases; fill in the apr.h APR_HAVE/APR_HAS and apr_type_t documentation!!! git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_poll.h')
-rw-r--r--include/apr_poll.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/include/apr_poll.h b/include/apr_poll.h
index 95cc4dddc..bd15e6379 100644
--- a/include/apr_poll.h
+++ b/include/apr_poll.h
@@ -58,12 +58,6 @@
* @file apr_poll.h
* @brief APR Poll interface
*/
-/**
- * @defgroup APR_Poll Poll Routines
- * @ingroup APR
- * @{
- */
-
#include "apr.h"
#include "apr_pools.h"
#include "apr_errno.h"
@@ -80,7 +74,13 @@ extern "C" {
#endif /* __cplusplus */
/**
- * @defgroup Poll options
+ * @defgroup apr_poll Poll Routines
+ * @ingroup APR
+ * @{
+ */
+
+/**
+ * @defgroup apr_poll_opt Poll options
* @{
*/
#define APR_POLLIN 0x001 /**< Can read without blocking */
@@ -281,9 +281,11 @@ APR_DECLARE(apr_status_t) apr_pollset_poll(apr_pollset_t *pollset,
apr_int32_t *num,
const apr_pollfd_t **descriptors);
+/** @} */
+
#ifdef __cplusplus
}
#endif
-/** @} */
+
#endif /* ! APR_POLL_H */