renamed plotThread -> plotUpdateThread

This commit is contained in:
Dima Kogan 2011-04-26 13:42:54 -07:00
parent 635f0fc7ee
commit 5d7701fb94

View File

@ -41,7 +41,7 @@ if($options{stream})
$dataQueue = Thread::Queue->new();
my $addThr = threads->create(\&mainThread);
my $plotThr = threads->create(\&plotThread);
my $plotThr = threads->create(\&plotUpdateThread);
while(<>)
{
@ -183,7 +183,7 @@ sub getGnuplotVersion
return $gnuplotVersion;
}
sub plotThread
sub plotUpdateThread
{
while(! $streamingFinished)
{