2.4.x patch: http://people.apache.org/~covener/2.4.x-proxy-opt-fn.diff
+1: covener, jim, ylavic
- *) mod_status: Use APR apr_time_as_msec() macro for conversion
- from apr_time_t to milliseconds instead of
- hard-coded division by 1000.
- trunk patch: http://svn.apache.org/r1839780
- 2.4.x patch: svn merge -c 1839780 ^/httpd/httpd/trunk .
- +1: rjung, rpluem, jim
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
ap_rprintf(r, "Total Accesses: %lu\nTotal kBytes: %"
APR_OFF_T_FMT "\nTotal Duration: %"
APR_TIME_T_FMT "\n",
- count, kbcount, duration_global / 1000);
+ count, kbcount, apr_time_as_msec(duration_global));
#ifdef HAVE_TIMES
/* Allow for OS/2 not having CPU stats */
ap_rprintf(r, "BytesPerReq: %g\n",
KBYTE * (float) kbcount / (float) count);
ap_rprintf(r, "DurationPerReq: %g\n",
- (float) duration_global / (float) count / 1000.);
+ (float) apr_time_as_msec(duration_global) / (float) count);
}
}
else { /* !short_report */
ap_rprintf(r, "<dt>Total accesses: %lu - Total Traffic: ", count);
format_kbyte_out(r, kbcount);
- ap_rprintf(r, " - Total Duration: %" APR_TIME_T_FMT "</dt>\n", duration_global / 1000);
+ ap_rprintf(r, " - Total Duration: %" APR_TIME_T_FMT "</dt>\n",
+ apr_time_as_msec(duration_global));
#ifdef HAVE_TIMES
/* Allow for OS/2 not having CPU stats */
format_byte_out(r, (unsigned long)(KBYTE * (float) kbcount
/ (float) count));
ap_rprintf(r, "/request - %g ms/request",
- (float) duration_global / (float) count / 1000.);
+ (float) apr_time_as_msec(duration_global) / (float) count);
}
ap_rputs("</dt>\n", r);
req_time = 0L;
else
req_time = (long)
- ((ws_record->stop_time -
- ws_record->start_time) / 1000);
+ apr_time_as_msec(ws_record->stop_time -
+ ws_record->start_time);
if (req_time < 0L)
req_time = 0L;
#endif
(long)apr_time_sec(nowtime -
ws_record->last_used),
- (long) req_time,
- duration_slot / 1000);
+ (long) req_time, apr_time_as_msec(duration_slot));
format_byte_out(r, conn_bytes);
ap_rputs("|", r);
#endif
(long)apr_time_sec(nowtime -
ws_record->last_used),
- (long)req_time,
- duration_slot / 1000);
+ (long)req_time, apr_time_as_msec(duration_slot));
ap_rprintf(r, "</td><td>%-1.1f</td><td>%-2.2f</td><td>%-2.2f\n",
(float)conn_bytes / KBYTE, (float) my_bytes / MBYTE,