rbb         99/04/26 13:11:59

  Modified:    docs     networkio.txt
  Log:
  Minor typo in select documentation.
  
  Revision  Changes    Path
  1.16      +13 -13    apache-apr/docs/networkio.txt
  
  Index: networkio.txt
  ===================================================================
  RCS file: /home/cvs/apache-apr/docs/networkio.txt,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- networkio.txt     1999/04/26 13:07:53     1.15
  +++ networkio.txt     1999/04/26 20:11:58     1.16
  @@ -62,31 +62,31 @@
           return) APR_SUCCESS or APR_FAILURE.
   Note: To unset an option, call apr_setsocketoption with the same argument. 
   
  - void apr_sd_set(apr_socket_t *, sd_set *)
  -        set the bit in the sd_set that corresponds to the socket
  + void apr_apr_sd_set(apr_socket_t *, sd_set *)
  +        set the bit in the apr_sd_set that corresponds to the socket
        Arguments:
           arg 1)  The socket we care about.
  -        arg 2)  The sd_set we are adding to.
  +        arg 2)  The apr_sd_set we are adding to.
   
  - void apr_sd_rapr_socket_t *, sd_set *)
  -        clear the bit in the sd_set that corresponds to the socket
  + void apr_sd_rapr_socket_t *, apr_sd_set *)
  +        clear the bit in the apr_sd_set that corresponds to the socket
        Arguments:
           arg 1)  The socket we care about.
  -        arg 2)  The sd_set we are removing from.
  +        arg 2)  The apr_sd_set we are removing from.
   
  - int apr_sd_isset(apr_socket_t *, sd_set *)
  -        check the bit in the sd_set that corresponds to the socket
  + int apr_sd_isset(apr_socket_t *, apr_sd_set *)
  +        check the bit in the apr_sd_set that corresponds to the socket
        Arguments:
           arg 1)  The socket we care about.
  -        arg 2)  The sd_set we are checking.
  +        arg 2)  The apr_sd_set we are checking.
           return) APR_SUCCESS if there, APR_FAILURE otherwise
   
  - void apr_sd_zero(sd_set *)
  -        clear all bits in the sd_set
  + void apr_sd_zero(apr_sd_set *)
  +        clear all bits in the apr_sd_set
        Arguments:
  -        arg 1)  The sd_set we are clearing.
  +        arg 1)  The apr_sd_set we are clearing.
   
  - apr_int32_t apr_select(apr_int32 nsd, apr_sd_set_t *readset, apr_sd_set_t 
*writeset, apr_sd_set_t *exceptset, struct timeval timeout) 
  + apr_int32_t apr_select(apr_int32 nsd, apr_apr_sd_set_t *readset, 
apr_sd_set_t *writeset, apr_sd_set_t *exceptset, struct timeval timeout) 
        Monitor sockets for one of three possible conditions. 
        Arguments:
        arg 1)  The number of sockets to check.  Must be at least one greater
  
  
  

Reply via email to