You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/03/25 12:29:58 UTC

svn commit: r758226 - /httpd/httpd/trunk/include/mpm_common.h

Author: trawick
Date: Wed Mar 25 11:29:55 2009
New Revision: 758226

URL: http://svn.apache.org/viewvc?rev=758226&view=rev
Log:
fix inconsistent defs of ap_mpm_note_child_killed()

Modified:
    httpd/httpd/trunk/include/mpm_common.h

Modified: httpd/httpd/trunk/include/mpm_common.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/mpm_common.h?rev=758226&r1=758225&r2=758226&view=diff
==============================================================================
--- httpd/httpd/trunk/include/mpm_common.h (original)
+++ httpd/httpd/trunk/include/mpm_common.h Wed Mar 25 11:29:55 2009
@@ -366,7 +366,7 @@
 
 #ifndef AP_MPM_NO_CHILD_PID
 extern pid_t ap_mpm_get_child_pid(int childnum);
-extern pid_t ap_mpm_note_child_killed(int childnum);
+extern apr_status_t ap_mpm_note_child_killed(int childnum);
 #endif
 
 AP_DECLARE_HOOK(int,monitor,(apr_pool_t *p))