- Fixed a massive memory leak in Hipadaba
- Extended the Hdb adapter to support SICSdata - Made the simulated histogram memory driver work properly when data has been set. - Implemented the hfactory command - Removed hdbcommand which was never finsihed
This commit is contained in:
@@ -259,7 +259,7 @@ static float FAILRATE;
|
||||
{
|
||||
for(i = 0; i < MAXCOUNT; i++)
|
||||
{
|
||||
self->lCounts[i] = (long)rand();
|
||||
self->lCounts[i] = (long)(SimRandom()*100);
|
||||
}
|
||||
self->lCounts[1] = self->fPreset;
|
||||
return OKOK;
|
||||
@@ -272,7 +272,7 @@ static float FAILRATE;
|
||||
|
||||
for(i = 0; i < MAXCOUNT; i++)
|
||||
{
|
||||
self->lCounts[i] = (long)rand();
|
||||
self->lCounts[i] = (long)(SimRandom()*100);
|
||||
}
|
||||
self->lCounts[1] = self->fPreset;
|
||||
return OKOK;
|
||||
|
||||
Reference in New Issue
Block a user