X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCommandmode.pm;h=12ff175029ef10da39ed95116fea66ff13133adb;hb=201dedf3e4325faab5c34b38135790012142286b;hp=14e0dd2c9b8e599a856ddbb76410755d1efa5d48;hpb=4db91b5f128f03334ec03a89eb8f56af1d698c78;p=spider.git diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 14e0dd2c..12ff1750 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -1256,16 +1256,15 @@ sub _diffms { return unless isdbg('chan'); my $call = shift; - my $a = shift; - my $b = shift || [gettimeofday]; - my $prefix = shift; + my $line = shift; + my $ta = shift; + my $tb = shift || [gettimeofday]; - my $secs = $b->[0] - $a->[0]; - my $msecs = int(($b->[1] - $a->[1]) / 1000); + my $a = int($ta->[0] * 1000) + int($ta->[1] / 1000); + my $b = int($tb->[0] * 1000) + int($tb->[1] / 1000); + my $msecs = $b - $a; - my $s = "forkcall stats: $call "; - $s .= "$prefix " if $prefix; - $s .= "${secs}S" if $secs; + my $s = "forkcall stats: $call '$line' "; $s .= "${msecs}mS"; dbg($s); } @@ -1280,10 +1279,11 @@ sub _diffms # IT DOES NOT START UP SOME NEW PROGRAM AND RELIES ON THE FACT THAT IT IS RUNNING DXSPIDER # THE CURRENT CONTEXT!! # -# call: $self->spawn_cmd(\, [cb => sub{...}], [prefix => "cmd> "], [progress => 0|1], [args => [...]]); +# call: $self->spawn_cmd($original_cmd_line, \, [cb => sub{...}], [prefix => "cmd> "], [progress => 0|1], [args => [...]]); sub spawn_cmd { my $self = shift; + my $line = shift; my $cmdref = shift; my $call = $self->{call}; my %args = @_; @@ -1324,7 +1324,7 @@ sub spawn_cmd $dxchan->send(@res); } } - _diffms($call, $t0, [gettimeofday], $prefix); + _diffms($call, $line, $t0); }); return @out;