timer_start()
drupal/includes/bootstrap.inc, line 563
Begin a global timer, for benchmarking of page execution time.
function timer_start() {
global $timer;
list($usec, $sec) = explode(' ', microtime());
$timer = (float)$usec + (float)$sec;
}