]> granicus.if.org Git - apache/commitdiff
Cleanup ap_os_kill from TPF and unix. Maintainers please validate.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 15 Oct 2000 19:58:01 +0000 (19:58 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sun, 15 Oct 2000 19:58:01 +0000 (19:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86600 13f79535-47bb-0310-9956-ffa450edef68

os/tpf/os.h
os/unix/os.h

index 993bfa35dac82e081e0e92c5ff198ad7367c17c8..d3b66405c49fe91a0f2fbc0ce720bd0ab3464183 100644 (file)
@@ -91,7 +91,6 @@ extern int ap_os_is_path_absolute(const char *f);
 /* 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... */
index 9cff182418c6805d0f8f1b385cf2edbd5efbfe5d..e6094b9612f3e61ea5ee405c5539c6e8ab94d68c 100644 (file)
@@ -141,13 +141,4 @@ extern int ap_os_is_path_absolute(const char *file);
  */
 #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 */