PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_status: Delay some memory allocation
- Fix <p> tag closing syntax
- trunk patch: http://svn.apache.org/r1757010
- http://svn.apache.org/r1757011
- 2.4.x patch: trunk works
- +1: jailletc36, jchampion, jim (will fix in 2.4)
- jchampion: nitpick: r1757010 introduces trailing whitespace
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
long req_time;
int short_report;
int no_table_report;
- worker_score *ws_record = apr_palloc(r->pool, sizeof *ws_record);
+ worker_score *ws_record;
process_score *ps_record;
char *stat_buffer;
pid_t *pid_buffer, worker_pid;
}
}
+ ws_record = apr_palloc(r->pool, sizeof *ws_record);
+
for (i = 0; i < server_limit; ++i) {
#ifdef HAVE_TIMES
clock_t proc_tu = 0, proc_ts = 0, proc_tcu = 0, proc_tcs = 0;
"\"<b><code>G</code></b>\" Gracefully finishing,<br /> \n"
"\"<b><code>I</code></b>\" Idle cleanup of worker, \n"
"\"<b><code>.</code></b>\" Open slot with no current process<br />\n"
- "<p />\n", r);
+ "</p>\n", r);
if (!ap_extended_status) {
int j;
int k = 0;