Skip to content

Commit

Permalink
more doxygen cleanup
Browse files Browse the repository at this point in the history
Submitted by:	Sander Temme <sander at temme dot net>


git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64852 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
kryton committed Dec 30, 2003
1 parent 15e7743 commit bd8fc10
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions include/apr_poll.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,14 @@ extern "C" {
*/

/**
* @defgroup apr_poll_opt Poll options
* @{
* Poll options
*/
#define APR_POLLIN 0x001 /**< Can read without blocking */
#define APR_POLLPRI 0x002 /**< Priority data available */
#define APR_POLLOUT 0x004 /**< Can write without blocking */
#define APR_POLLERR 0x010 /**< Pending error */
#define APR_POLLHUP 0x020 /**< Hangup occurred */
#define APR_POLLNVAL 0x040 /**< Descriptior invalid */
/** @} */

/** Used in apr_pollfd_t to determine what the apr_descriptor is */
typedef enum {
Expand Down Expand Up @@ -186,13 +184,9 @@ APR_DECLARE(apr_status_t) apr_pollset_poll(apr_pollset_t *pollset,
* a maximum, not a minimum. If a socket is signalled, we
* will wake up before this time. A negative number means
* wait until a socket is signalled.
* @remark
* <PRE>
* The number of sockets signalled is returned in the second argument.
*
* This is a blocking call, and it will not return until either a
* socket has been signalled, or the timeout has expired.
* </PRE>
* @remark The number of sockets signalled is returned in the third argument.
* This is a blocking call, and it will not return until either a
* socket has been signalled, or the timeout has expired.
*/
APR_DECLARE(apr_status_t) apr_poll(apr_pollfd_t *aprset, apr_int32_t numsock,
apr_int32_t *nsds,
Expand Down

0 comments on commit bd8fc10

Please sign in to comment.