cvs commit: apache-apr/pthreads/src/os/unix os.h

1999-04-09 Thread manoj
manoj   99/04/08 20:33:40

  Modified:pthreads/src/os/unix os.h
  Log:
  Remove extra ap_spawnvp declaration.
  
  Revision  ChangesPath
  1.5   +1 -6  apache-apr/pthreads/src/os/unix/os.h
  
  Index: os.h
  ===
  RCS file: /home/cvs/apache-apr/pthreads/src/os/unix/os.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- os.h  1999/04/08 22:42:20 1.4
  +++ os.h  1999/04/09 03:33:39 1.5
  @@ -75,6 +75,7 @@
   #define INLINE extern ap_inline
   
   INLINE int ap_os_is_path_absolute(const char *file);
  +/* spawn = fork + exec on unix */
   INLINE int ap_spawnvp(const char *file, char *const argv[]);
   
   #include os-inline.c
  @@ -101,12 +102,6 @@
   #ifdef HAVE_DL_H
   #include dl.h
   #endif
  -
  -/*
  - * spawn = fork + exec on unix
  - */
  -
  -extern int ap_spawnvp(const char *, char *const []);
   
   /*
* Do not use native AIX DSO support
  
  
  


cvs commit: apache-apr/pthreads/src/os/unix os.h

1999-04-08 Thread fielding
fielding99/04/08 15:42:21

  Modified:pthreads/src/os/unix os.h
  Log:
  Add prototypes for ap_spawnvp().
  
  Revision  ChangesPath
  1.4   +2 -0  apache-apr/pthreads/src/os/unix/os.h
  
  Index: os.h
  ===
  RCS file: /home/cvs/apache-apr/pthreads/src/os/unix/os.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- os.h  1999/02/07 06:30:14 1.3
  +++ os.h  1999/04/08 22:42:20 1.4
  @@ -75,6 +75,7 @@
   #define INLINE extern ap_inline
   
   INLINE int ap_os_is_path_absolute(const char *file);
  +INLINE int ap_spawnvp(const char *file, char *const argv[]);
   
   #include os-inline.c
   
  @@ -84,6 +85,7 @@
* as normal
*/
   extern int ap_os_is_path_absolute(const char *file);
  +extern int ap_spawnvp(const char *file, char *const argv[]);
   #endif
   
   /* Other ap_os_ routines not used by this platform */