Fix stats analyser.

This commit is contained in:
Thulinma 2015-06-16 11:17:18 +02:00
parent a936d1c737
commit 9c4af587df

View file

@ -31,7 +31,7 @@ int main(int argc, char ** argv){
IPC::sharedClient ** clients = (IPC::sharedClient **)malloc(sizeof(IPC::sharedClient *)*clientCount); IPC::sharedClient ** clients = (IPC::sharedClient **)malloc(sizeof(IPC::sharedClient *)*clientCount);
for (long long i = 0; i < clientCount; i++){ for (long long i = 0; i < clientCount; i++){
clients[i] = new IPC::sharedClient("statistics", STAT_EX_SIZE, true); clients[i] = new IPC::sharedClient(SHM_STATISTICS, STAT_EX_SIZE, true);
} }
unsigned long long int counter = 0; unsigned long long int counter = 0;