summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Lennox <jonathan.lennox@8x8.com>2024-04-17 15:05:39 -0400
committerGitHub <noreply@github.com>2024-04-17 21:05:39 +0200
commite8da23960041019e20723a8ef8d2fc1c61d83995 (patch)
treee26a4c8caebe50c63ba094b09b62476e56e6b425
parentdee47407da14e07d0bcc5f7a9ba1ec4986ee5c58 (diff)
Enhance timer execution debug log. (#708)
This makes the information for timer execution match that for timer scheduling.
-rwxr-xr-xusrsctplib/netinet/sctputil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usrsctplib/netinet/sctputil.c b/usrsctplib/netinet/sctputil.c
index af06200..1abfea3 100755
--- a/usrsctplib/netinet/sctputil.c
+++ b/usrsctplib/netinet/sctputil.c
@@ -1830,7 +1830,8 @@ sctp_timeout_handler(void *t)
goto out_decr;
}
tmr->stopped_from = 0xa002;
- SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d goes off.\n", type);
+ SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d goes off: inp=%p, stcb=%p, net=%p.\n",
+ type, inp, stcb, net);
if (!SCTP_OS_TIMER_ACTIVE(&tmr->timer)) {
SCTPDBG(SCTP_DEBUG_TIMER2,
"Timer type %d handler exiting due to not being active.\n",