ostinato/client/mythread.cpp
2008-05-03 14:37:10 +00:00

25 lines
397 B
C++

#include "mythread.h"
void MyThread::run()
{
int i, j;
for (i=0; i<NumPorts; i++)
for (j=0; j<NumStats; j++)
stats[i][j] = 0;
qDebug("after stats init\n");
while (1)
{
for (i=0; i<NumPorts; i++)
{
emit portStatsUpdate(i, (void*) &stats[i]);
for (j=0; j<NumStats; j++)
stats[i][j]+= qrand() & 0xF;
}
sleep(qrand() & 0x3);
}
}