-static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/netmem.c,v 6.45 2010-08-16 14:42:21 hadaq Exp $";
+static char *rcsId = "$Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/hadaq/netmem.c,v 6.46 2010-08-19 13:31:43 hadaq Exp $";
#define _POSIX_C_SOURCE 199309L
#define SYSLOG_NAMES
unsigned long *netmemBuff[MAXINPATH];
unsigned long *nrOfMsgs;
unsigned long *recvBytesRate[MAXINPATH];
+ unsigned long *portNr[MAXINPATH];
} TheStats;
static jmp_buf terminateJmp;
sprintf(buf, "bytesReceivedRate%d", i);
theStats->recvBytesRate[i] = Worker_addStatistic(worker, buf);
+
+ sprintf(buf, "portNr%d", i);
+ theStats->portNr[i] = Worker_addStatistic(worker, buf);
+ (*theStats->portNr[i]) = theArgs->portNr[i];
}
theStats->nrOfMsgs = Worker_addStatistic(worker, "nrOfMsgs");