Peek at a Timer Queue

Is there a function or fancy way of peeking at the number of messages on a timer queue? 

Peek at a Timer Queue

The timer queue is private to the timers.c source file, so you could not peek the queue without editing the core source files first to remove the “static”, and in so doing, making the timer queue global. Regards.