From 4b619eb7bd3e1946089fc1ee12b2aa03f03d1d57 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Thu, 16 Apr 2015 15:28:37 -0700 Subject: [PATCH] Remove $wgRUstart, unused Change-Id: Ia57f8fb2da4eed6b185ea0592d521e3119411f0e --- includes/WebStart.php | 1 - includes/profiler/SectionProfiler.php | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/WebStart.php b/includes/WebStart.php index 9c71f3e1cb..f97dc6a94f 100644 --- a/includes/WebStart.php +++ b/includes/WebStart.php @@ -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"; diff --git a/includes/profiler/SectionProfiler.php b/includes/profiler/SectionProfiler.php index 245022df02..bab8eba985 100644 --- a/includes/profiler/SectionProfiler.php +++ b/includes/profiler/SectionProfiler.php @@ -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' ) { -- 2.20.1