Commit 46461cb6 authored by Stefan Fritsch's avatar Stefan Fritsch
Browse files

Fix handling of cumulative system time


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1135170 13f79535-47bb-0310-9956-ffa450edef68
parent c286597a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -333,7 +333,7 @@ static int status_handler(request_rec *r)
                        proc_tu += tmp_tu;
                        proc_ts += tmp_ts;
                        proc_tcu += tmp_tcu;
                        proc_tcs += proc_tcs;
                        proc_tcs += tmp_tcs;
                    }
                    else {
                        if (tmp_tu > proc_tu ||
@@ -343,7 +343,7 @@ static int status_handler(request_rec *r)
                            proc_tu = tmp_tu;
                            proc_ts = tmp_ts;
                            proc_tcu = tmp_tcu;
                            proc_tcs = proc_tcs;
                            proc_tcs = tmp_tcs;
                        }
                    }
#endif /* HAVE_TIMES */