Commit f0b829fe authored by Jeff Trawick's avatar Jeff Trawick
Browse files

get the MPMs consistent w.r.t. visibility of ap_max_requests_per_child


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89051 13f79535-47bb-0310-9956-ffa450edef68
parent 709a5ce8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@
 */

int ap_threads_per_child=HARD_THREAD_LIMIT;         /* Worker threads per child */
int ap_max_requests_per_child=0;
static int ap_max_requests_per_child=0;
static const char *ap_pid_fname=NULL;
static int ap_threads_to_start=0;
static int min_spare_threads=0;
+0 −1
Original line number Diff line number Diff line
@@ -60,7 +60,6 @@
#define APACHE_MPM_BEOS_H

extern int ap_threads_per_child;
extern int ap_max_requests_per_child;
extern int ap_pipe_of_death[2];
extern int ap_extended_status;
extern void clean_child_exit(int);
+0 −1
Original line number Diff line number Diff line
@@ -71,7 +71,6 @@
#define MPM_NOTE_CHILD_KILLED(i) (MPM_CHILD_PID(i) = 0)

extern int ap_threads_per_child;
extern int ap_max_requests_per_child;
extern int ap_max_daemons_limit;
extern server_rec *ap_server_conf;
extern char ap_coredump_dir[MAX_STRING_LEN];
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@
 */

int ap_threads_per_child=0;         /* Worker threads per child */
int ap_max_requests_per_child=0;
static int ap_max_requests_per_child=0;
static const char *ap_pid_fname=NULL;
static int ap_daemons_to_start=0;
static int min_spare_threads=0;
+0 −1
Original line number Diff line number Diff line
@@ -112,7 +112,6 @@ void mpm_start_child_console_handler(void);
/* From winnt.c: */

extern OSVERSIONINFO osver;
extern int ap_max_requests_per_child;
extern void clean_child_exit(int);

AP_DECLARE(void) ap_start_shutdown(void);
Loading