major changes to monitor. Bug in Convert::copyScalar (change every break to rerurn); minor change to StandardPVField and queueVoid

This commit is contained in:
Marty Kraimer
2011-04-05 08:37:16 -04:00
parent 617871ece9
commit 323a2d7321
8 changed files with 230 additions and 88 deletions

View File

@@ -92,7 +92,7 @@ QueueElementVoid * QueueVoid::getFree()
void QueueVoid::setUsed(QueueElementVoid *queueElement)
{
if(queueElement!=array[nextSetUsed++]) {
throw std::logic_error(String("not correcect queueElement"));
throw std::logic_error(String("not correct queueElement"));
}
numberUsed++;
if(nextSetUsed>=number) nextSetUsed = 0;