aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocom/core/statistics.h')
-rw-r--r--include/osmocom/core/statistics.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/osmocom/core/statistics.h b/include/osmocom/core/statistics.h
index 1e472ffd..41716ccf 100644
--- a/include/osmocom/core/statistics.h
+++ b/include/osmocom/core/statistics.h
@@ -12,6 +12,12 @@ struct osmo_counter {
unsigned long previous; /*!< \brief previous value */
};
+/*! \brief Decrement counter */
+static inline void osmo_counter_dec(struct osmo_counter *ctr)
+{
+ ctr->value--;
+}
+
/*! \brief Increment counter */
static inline void osmo_counter_inc(struct osmo_counter *ctr)
{