You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by st...@apache.org on 2002/10/29 02:33:51 UTC

cvs commit: apr/file_io/win32 pipe.c

stoddard    2002/10/28 17:33:51

  Modified:    file_io/win32 pipe.c
  Log:
  Fix comments
  
  Revision  Changes    Path
  1.45      +2 -4      apr/file_io/win32/pipe.c
  
  Index: pipe.c
  ===================================================================
  RCS file: /home/cvs/apr/file_io/win32/pipe.c,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- pipe.c	30 May 2002 05:25:00 -0000	1.44
  +++ pipe.c	29 Oct 2002 01:33:51 -0000	1.45
  @@ -135,7 +135,7 @@
   }
   
   /* apr_create_nt_pipe()
  - * An internal (for now) APR function created for use by apr_proc_create() 
  + * An internal (for now) APR function used by apr_proc_create() 
    * when setting up pipes to communicate with the child process. 
    * apr_create_nt_pipe() allows setting the blocking mode of each end of 
    * the pipe when the pipe is created (rather than after the pipe is created). 
  @@ -150,9 +150,7 @@
    * non-blocking? On NT, even though you can set a pipe non-blocking, 
    * there is no clean way to set event driven non-zero timeouts (e.g select(),
    * WaitForSinglelObject, et. al. will not detect pipe i/o). On NT, you 
  - * have to poll the pipe to detech i/o on a non-blocking pipe.
  - *
  - * wgs
  + * have to poll the pipe to detect i/o on a non-blocking pipe.
    */
   apr_status_t apr_create_nt_pipe(apr_file_t **in, apr_file_t **out, 
                                   BOOLEAN bAsyncRead, BOOLEAN bAsyncWrite,