aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-19 17:09:37 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-19 17:09:37 +0100
commitc70aae4697871f7b50369634e57c36c5d081df4d (patch)
treeee2a8d020d2b9d7bbf5d2adf50e8677a698510e8 /src/bts.h
parent937e2a6919f59b892d3e667a82d920550b3db345 (diff)
rlc: Count the window stalls on the RLC level
Diffstat (limited to 'src/bts.h')
-rw-r--r--src/bts.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bts.h b/src/bts.h
index 0a18b7e8..178be3d8 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -160,6 +160,7 @@ public:
CTR_TBF_REUSED,
CTR_RLC_SENT,
CTR_RLC_RESENT,
+ CTR_RLC_STALLED,
CTR_DECODE_ERRORS,
CTR_SBA_ALLOCATED,
CTR_SBA_FREED,
@@ -208,6 +209,7 @@ public:
void tbf_reused();
void rlc_sent();
void rlc_resent();
+ void rlc_stalled();
void decode_error();
void sba_allocated();
void sba_freed();
@@ -273,6 +275,7 @@ CREATE_COUNT_INLINE(tbf_ul_freed, CTR_TBF_UL_FREED)
CREATE_COUNT_INLINE(tbf_reused, CTR_TBF_REUSED)
CREATE_COUNT_INLINE(rlc_sent, CTR_RLC_SENT)
CREATE_COUNT_INLINE(rlc_resent, CTR_RLC_RESENT)
+CREATE_COUNT_INLINE(rlc_stalled, CTR_RLC_STALLED)
CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS)
CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED)
CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED)