T
Teknopath
Any help would be appreciated...
I do the following in my code:
$inputQueueCounts{$queueN}{'Time'} = localtime;
if ($bufferLength >= $inputQueueCounts{$queueN}{'Max'})
{
$inputQueueCounts{$queueN}{'Max'} = $bufferLength;
$inputQueueCounts{$queueN}{'MaxTime'} =
$inputQueueCounts{$queueN}{'Time'};
}
I would expect $inputQueueCounts{$queueN}{'Time'} and
$inputQueueCounts{$queueN}{'MaxTime'} to have the same value, but in
actuality, $inputQueueCounts{$queueN}{'MaxTime'} is showing 10 seconds
earlier. How could this be happening?
:meb:
I do the following in my code:
$inputQueueCounts{$queueN}{'Time'} = localtime;
if ($bufferLength >= $inputQueueCounts{$queueN}{'Max'})
{
$inputQueueCounts{$queueN}{'Max'} = $bufferLength;
$inputQueueCounts{$queueN}{'MaxTime'} =
$inputQueueCounts{$queueN}{'Time'};
}
I would expect $inputQueueCounts{$queueN}{'Time'} and
$inputQueueCounts{$queueN}{'MaxTime'} to have the same value, but in
actuality, $inputQueueCounts{$queueN}{'MaxTime'} is showing 10 seconds
earlier. How could this be happening?
:meb: