Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2B05B1006B for ; Sat, 18 Jan 2014 18:06:02 +0000 (UTC) Received: (qmail 16526 invoked by uid 500); 18 Jan 2014 18:06:01 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 16482 invoked by uid 500); 18 Jan 2014 18:06:01 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 16454 invoked by uid 99); 18 Jan 2014 18:06:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jan 2014 18:06:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jan 2014 18:05:58 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C283023888E2; Sat, 18 Jan 2014 18:05:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1559382 - /apr/apr/trunk/include/apr_poll.h Date: Sat, 18 Jan 2014 18:05:36 -0000 To: commits@apr.apache.org From: trawick@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140118180536.C283023888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: trawick Date: Sat Jan 18 18:05:36 2014 New Revision: 1559382 URL: http://svn.apache.org/r1559382 Log: improve formatting of poll options and pollset flags (section headings were mangled) Modified: apr/apr/trunk/include/apr_poll.h Modified: apr/apr/trunk/include/apr_poll.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_poll.h?rev=1559382&r1=1559381&r2=1559382&view=diff ============================================================================== --- apr/apr/trunk/include/apr_poll.h (original) +++ apr/apr/trunk/include/apr_poll.h Sat Jan 18 18:05:36 2014 @@ -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