summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2014-01-18 18:05:36 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2014-01-18 18:05:36 +0000
commitb7221175fe990ae618ee9852a5bdefc1d99c88d1 (patch)
tree14fc33e47facbb4675c3c51c4273fe1e7af58b08 /include
parent1108dc28e41a21f962ce10598407981d246bf49d (diff)
downloadlibapr-b7221175fe990ae618ee9852a5bdefc1d99c88d1.tar.gz
improve formatting of poll options and pollset flags (section headings were mangled)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1559382 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_poll.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/apr_poll.h b/include/apr_poll.h
index 7ddae5bd7..482d6ee1d 100644
--- a/include/apr_poll.h
+++ b/include/apr_poll.h
@@ -42,7 +42,9 @@ extern "C" {
*/
/**
- * Poll options
+ * @defgroup pollopts Poll options
+ * @ingroup apr_poll
+ * @{
*/
#define APR_POLLIN 0x001 /**< Can read without blocking */
#define APR_POLLPRI 0x002 /**< Priority data available */
@@ -50,9 +52,12 @@ extern "C" {
#define APR_POLLERR 0x010 /**< Pending error */
#define APR_POLLHUP 0x020 /**< Hangup occurred */
#define APR_POLLNVAL 0x040 /**< Descriptor invalid */
+/** @} */
/**
- * Pollset Flags
+ * @defgroup pollflags Pollset Flags
+ * @ingroup apr_poll
+ * @{
*/
#define APR_POLLSET_THREADSAFE 0x001 /**< Adding or removing a descriptor is
* thread-safe
@@ -67,6 +72,7 @@ extern "C" {
* the specified non-default method cannot be
* used
*/
+/** @} */
/**
* Pollset Methods