diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-05-13 12:16:17 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-05-13 12:16:17 +0200 |
commit | 087fcff9a5342f7a10c9f378bd4130f409657001 (patch) | |
tree | 35ec23d57187fe940262be48ca6924f0c66f1d42 /include | |
parent | 7b45d608872f17ab8b71d53a2d87e5f8d621b007 (diff) |
rate_ctr: Store the numeric index as part of 'rate_ctr_group'
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocore/rate_ctr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocore/rate_ctr.h b/include/osmocore/rate_ctr.h index c6a1ace2..47fd5a36 100644 --- a/include/osmocore/rate_ctr.h +++ b/include/osmocore/rate_ctr.h @@ -49,6 +49,7 @@ struct rate_ctr_group { struct llist_head list; /* Pointer to the counter group class */ const struct rate_ctr_group_desc *desc; + unsigned int idx; /* The name prefix generated from desc->group_prefix_fmt and index */ char *name_prefix; /* Actual counter structures below */ |