Remove $wgRUstart, unused
authorChad Horohoe <chadh@wikimedia.org>
Thu, 16 Apr 2015 22:28:37 +0000 (15:28 -0700)
committerChad Horohoe <chadh@wikimedia.org>
Thu, 16 Apr 2015 22:28:37 +0000 (15:28 -0700)
Change-Id: Ia57f8fb2da4eed6b185ea0592d521e3119411f0e

includes/WebStart.php
includes/profiler/SectionProfiler.php

index 9c71f3e..f97dc6a 100644 (file)
@@ -78,7 +78,6 @@ if ( $IP === false ) {
 
 # Grab profiling functions
 require_once "$IP/includes/profiler/ProfilerFunctions.php";
-$wgRUstart = wfGetRusage() ?: array();
 
 # Start the autoloader, so that extensions can derive classes from core files
 require_once "$IP/includes/AutoLoader.php";
index 245022d..bab8eba 100644 (file)
@@ -451,15 +451,14 @@ class SectionProfiler {
        }
 
        /**
-        * Get the initial time of the request, based either on $wgRequestTime or
-        * $wgRUstart. Will return null if not able to find data.
+        * Get the initial time of the request, based on getrusage()
         *
         * @param string|bool $metric Metric to use, with the following possibilities:
         *   - user: User CPU time (without system calls)
         *   - cpu: Total CPU time (user and system calls)
         *   - wall (or any other string): elapsed time
         *   - false (default): will fall back to default metric
-        * @return float|null
+        * @return float
         */
        protected function getTime( $metric = 'wall' ) {
                if ( $metric === 'cpu' || $metric === 'user' ) {