counters: remove last and now unused tm_name reference

pull/1508/head
Victor Julien 11 years ago
parent 83f27ae2a5
commit faef92f8da

@ -61,9 +61,8 @@ enum {
* \brief per thread store of counters * \brief per thread store of counters
*/ */
typedef struct StatsThreadStore_ { typedef struct StatsThreadStore_ {
char *name; /** thread name used in output */
const char *name;
char *tm_name;
StatsPublicThreadContext *ctx; StatsPublicThreadContext *ctx;
@ -247,9 +246,6 @@ static void StatsReleaseCtx()
sts = stats_ctx->sts; sts = stats_ctx->sts;
while (sts != NULL) { while (sts != NULL) {
if (sts->tm_name != NULL)
SCFree(sts->tm_name);
if (sts->head != NULL) if (sts->head != NULL)
SCFree(sts->head); SCFree(sts->head);
@ -559,24 +555,6 @@ static void StatsCopyCounterValue(StatsLocalCounter *pcae)
return; return;
} }
/**
* \brief Calculates counter value that should be sent as output
*
* If we aren't dealing with timebased counters, we just return the
* the counter value. In case of Timebased counters, if we haven't
* crossed the interval, we display the current value without any
* modifications. If we have crossed the limit, we calculate the counter
* value for the time period and also return 1, to indicate that the
* counter value can be reset after use
*
* \param pc Pointer to the PerfCounter for which the timebased counter has to
* be calculated
*/
static uint64_t StatsOutputCalculateCounterValue(StatsCounter *pc)
{
return pc->value;
}
/** /**
* \brief The output interface for the Stats API * \brief The output interface for the Stats API
*/ */
@ -631,8 +609,7 @@ static int StatsOutput(ThreadVars *tv)
while (sts != NULL) { while (sts != NULL) {
BUG_ON(thread < 0); BUG_ON(thread < 0);
SCLogDebug("Thread %d %s (%s) ctx %p", thread, sts->name, SCLogDebug("Thread %d %s ctx %p", thread, sts->name, sts->ctx);
sts->tm_name ? sts->tm_name : "none", sts->ctx);
/* temporay table for quickly storing the counters for this /* temporay table for quickly storing the counters for this
* thread store, so that we can post process them outside * thread store, so that we can post process them outside

Loading…
Cancel
Save