You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/07/21 23:06:25 UTC

cvs commit: apache-2.0/src/lib/apr/lib Makefile.in apr_execve.c

rbb         00/07/21 14:06:25

  Modified:    src/lib/apr/include apr_lib.h
               src/lib/apr/lib Makefile.in
  Removed:     src/lib/apr/lib apr_execve.c
  Log:
  Remove all of the ap_exec* functions.  Nobody is currently using these
  functions, and since we don't really have a fork function in APR, I'm
  not sure having exec functions makes sense.
  
  Revision  Changes    Path
  1.37      +0 -30     apache-2.0/src/lib/apr/include/apr_lib.h
  
  Index: apr_lib.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_lib.h,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- apr_lib.h	2000/07/21 20:30:43	1.36
  +++ apr_lib.h	2000/07/21 21:06:24	1.37
  @@ -104,36 +104,6 @@
    */
   APR_EXPORT(const char *) ap_filename_of_pathname(const char *pathname);
   
  -/*
  -
  -=head1 ap_status_t ap_execle(const char *c, const char *a, ...)
  -
  -B<Replace the current process image with a new process>
  -
  -    arg 1) The path to the new program to run
  -    arg 2) The first argument for the new program
  -    ...)   The rest of the arguments for the new program. 
  -
  -=cut
  - */
  -APR_EXPORT_NONSTD(ap_status_t) ap_execle(const char *c, const char *a, ...);
  -
  -/*
  -
  -=head1 ap_status_t ap_execve(const char *c, const char *aargv[], const char *envp[])
  -
  -B<Replace the current process image with a new process>
  -
  -    arg 1) The path to the new program to run
  -    arg 2) The arguments for the new program in an array of char *.
  -    arg 3) The environment for the new program in an array of char * of the 
  -           form key=value 
  -
  -=cut
  - */
  -APR_EXPORT_NONSTD(ap_status_t) ap_execve(const char *c, const char *argv[],
  -				  const char *envp[]);
  -
   /* These macros allow correct support of 8-bit characters on systems which
    * support 8-bit characters.  Pretty dumb how the cast is required, but
    * that's legacy libc for ya.  These new macros do not support EOF like
  
  
  
  1.25      +1 -2      apache-2.0/src/lib/apr/lib/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/lib/Makefile.in,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Makefile.in	2000/07/21 20:05:55	1.24
  +++ Makefile.in	2000/07/21 21:06:25	1.25
  @@ -16,8 +16,7 @@
   
   #LIB=@LIBPREFIX@apr.a
   
  -OBJS=apr_execve.o \
  -	apr_md5.o \
  +OBJS=apr_md5.o \
   	apr_pools.o \
   	apr_signal.o \
   	apr_tables.o \