You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ia...@apache.org on 2003/12/30 10:21:28 UTC

cvs commit: apr/include apr_poll.h

ianh        2003/12/30 01:21:28

  Modified:    include  apr_poll.h
  Log:
  more doxygen cleanup
  
  Submitted by:	Sander Temme <sander at temme dot net>
  
  Revision  Changes    Path
  1.14      +4 -10     apr/include/apr_poll.h
  
  Index: apr_poll.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_poll.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- apr_poll.h	21 Nov 2003 19:50:02 -0000	1.13
  +++ apr_poll.h	30 Dec 2003 09:21:28 -0000	1.14
  @@ -80,8 +80,7 @@
    */
   
   /**
  - * @defgroup apr_poll_opt Poll options
  - * @{
  + * Poll options
    */
   #define APR_POLLIN    0x001     /**< Can read without blocking */
   #define APR_POLLPRI   0x002     /**< Priority data available */
  @@ -89,7 +88,6 @@
   #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 { 
  @@ -186,13 +184,9 @@
    *                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,