You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@httpd.apache.org by wr...@locus.apache.org on 2000/10/15 21:58:01 UTC

cvs commit: apache-2.0/src/os/unix os.h

wrowe       00/10/15 12:58:01

  Modified:    src/os/tpf os.h
               src/os/unix os.h
  Log:
    Cleanup ap_os_kill from TPF and unix.  Maintainers please validate.
  
  Revision  Changes    Path
  1.6       +0 -1      apache-2.0/src/os/tpf/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/tpf/os.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- os.h	2000/08/06 06:07:52	1.5
  +++ os.h	2000/10/15 19:58:00	1.6
  @@ -91,7 +91,6 @@
   /* Other ap_os_ routines not used by this platform */
   
   #define ap_os_is_filename_valid(f)          (1)
  -#define ap_os_kill(pid, sig)                kill(pid, sig)
   
   /* Sorry if this is ugly, but the include order doesn't allow me
    * to use request_rec here... */
  
  
  
  1.13      +0 -9      apache-2.0/src/os/unix/os.h
  
  Index: os.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/unix/os.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- os.h	2000/08/08 04:27:40	1.12
  +++ os.h	2000/10/15 19:58:01	1.13
  @@ -141,13 +141,4 @@
    */
   #define ap_os_is_filename_valid(f)          (1)
   
  -/**
  - * Send a signal to a specified process
  - * @param pid the process to send the signal to
  - * @param sig the signal to send
  - * @return On success 0, on error -1
  - * @deffunc int ap_os_kill(pid_t pid, int sig)
  - */
  -#define ap_os_kill(pid, sig)                kill(pid, sig)
  -
   #endif	/* !APACHE_OS_H */