You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/03/16 10:31:28 UTC

cvs commit: apache-2.0/src/lib/apr/file_io/os2 pipe.c

bjh         00/03/16 01:31:28

  Modified:    src/lib/apr/file_io/os2 pipe.c
  Log:
  OS/2: Update named pipe functions to match current prototypes.
  
  Revision  Changes    Path
  1.9       +7 -2      apache-2.0/src/lib/apr/file_io/os2/pipe.c
  
  Index: pipe.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/os2/pipe.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- pipe.c	2000/03/10 00:05:57	1.8
  +++ pipe.c	2000/03/16 09:31:27	1.9
  @@ -93,10 +93,15 @@
   
   
   
  -ap_status_t ap_create_namedpipe(char **new, char *dirpath, ap_fileperms_t perm, ap_context_t *cont)
  +ap_status_t ap_create_namedpipe(char *filename, ap_fileperms_t perm, ap_context_t *cont)
   {
       /* Not yet implemented, interface not suitable */
  -    return -1;
  +    return APR_ENOTIMPL;
   } 
   
    
  +
  +ap_status_t ap_set_pipe_timeout(struct file_t *thepipe, ap_int32_t timeout)
  +{
  +    return APR_ENOTIMPL;
  +}