You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mt...@apache.org on 2011/12/05 14:09:54 UTC

svn commit: r1210447 - /httpd/httpd/trunk/modules/core/mod_watchdog.c

Author: mturk
Date: Mon Dec  5 13:09:54 2011
New Revision: 1210447

URL: http://svn.apache.org/viewvc?rev=1210447&view=rev
Log:
No need for process.h system include since we don't use getpid() any more

Modified:
    httpd/httpd/trunk/modules/core/mod_watchdog.c

Modified: httpd/httpd/trunk/modules/core/mod_watchdog.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/core/mod_watchdog.c?rev=1210447&r1=1210446&r2=1210447&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/core/mod_watchdog.c (original)
+++ httpd/httpd/trunk/modules/core/mod_watchdog.c Mon Dec  5 13:09:54 2011
@@ -18,10 +18,6 @@
  */
 
 #include "apr.h"
-#if APR_HAVE_PROCESS_H
-#include <process.h>        /* for getpid() on Win32 */
-#endif
-
 #include "mod_watchdog.h"
 #include "ap_provider.h"
 #include "ap_mpm.h"