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