diff options
author | Urban Müller | 2018-11-16 13:57:34 +0100 |
---|---|---|
committer | Urban Müller | 2018-11-16 13:57:34 +0100 |
commit | c40446509e5e53530ac45847e5088f09d1804ab0 (patch) | |
tree | 5140916ba930d0728e9b89d62bac5248f15681e2 | |
parent | 03e493d144fb3b4e524f0d5e757d82021d1cbed8 (diff) | |
download | itools-c40446509e5e53530ac45847e5088f09d1804ab0.tar.gz itools-c40446509e5e53530ac45847e5088f09d1804ab0.tar.bz2 itools-c40446509e5e53530ac45847e5088f09d1804ab0.zip |
replace horribly named function with slight less horribly named one
-rw-r--r-- | it.class | 10 | ||||
-rw-r--r-- | it_url.class | 4 |
2 files changed, 7 insertions, 7 deletions
@@ -115,7 +115,7 @@ static function log_line($name, $line) static function timerlog($label = '') { if ($GLOBALS['debug_timerlog']) - $GLOBALS['ULTRATIMERLOG'] .= sprintf(" %s:%d", $label, (microtime(true) - $GLOBALS['ULTRATIME'])*1000); + $GLOBALS['ULTRATIMERLOG'] .= sprintf(" %s:%d", $label, (gettimeofday(true) - $GLOBALS['ULTRATIME'])*1000); } @@ -605,10 +605,10 @@ static function exec(/* $cmd, $values1 = array(), ... */) $args = func_get_args(); $cmd = call_user_func_array('it::shell_command', $args); - $before = microtime(true); + $before = gettimeofday(true); $result = EDC('noexec') ? "" : (string)shell_exec($cmd); - @it::log('exec', round((microtime(true) - $before)*1000) . "\t$cmd"); + @it::log('exec', round((gettimeofday(true) - $before)*1000) . "\t$cmd"); return $result; } @@ -624,13 +624,13 @@ static function system(/* $cmd, $values1 = array(), ... */) $args = func_get_args(); $cmd = call_user_func_array('it::shell_command', $args); - $before = microtime(true); + $before = gettimeofday(true); if (!EDC('noexec')) system($cmd, $result); else $result = 0; - @it::log('exec', round((microtime(true) - $before)*1000) . "\t$cmd"); + @it::log('exec', round((gettimeofday(true) - $before)*1000) . "\t$cmd"); return $result; } diff --git a/it_url.class b/it_url.class index d196c54..02ac840 100644 --- a/it_url.class +++ b/it_url.class @@ -343,7 +343,7 @@ function get_multi($p=null) $retries[$key] = 0; } - $start = microtime(true); + $start = gettimeofday(true); # curl_multi loop copied from example at http://php.net/manual/en/function.curl-multi-exec.php $active = null; @@ -368,7 +368,7 @@ function get_multi($p=null) $closehandle($key); - EDC('reqtimings', $key, $info['result'], (microtime(true) - $start) * 1000); + EDC('reqtimings', $key, $info['result'], (gettimeofday(true) - $start) * 1000); if ($info['result'] == CURLE_OK) $results_unordered[$key] = $content; else if($retries[$key]++ < $p['retries']) |