diff options
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 10 |
1 files changed, 5 insertions, 5 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; } |