aboutsummaryrefslogtreecommitdiffstats
path: root/includes/ProfilerStub.php
blob: abcfb34868ce5d5ae99cf80b27ebbb424c3706e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

# Stub profiling functions

$haveProctitle=function_exists("setproctitle");
function wfProfileIn( $fn = '' ) {
	global $hackwhere, $wgDBname, $haveProctitle;
	if ($haveProctitle) {
		$hackwhere[] = $fn;
		setproctitle($fn . " [$wgDBname]");
	}
}
function wfProfileOut( $fn = '' ) {
	global $hackwhere, $wgDBname, $haveProctitle;
	if (!$haveProctitle)
		return;
	if (count($hackwhere))
		array_pop($hackwhere);
	if (count($hackwhere))
		setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]");
}
function wfGetProfilingOutput( $s, $e ) {}
function wfProfileClose() {}
$wgProfiling = false;