Extending queue statistics.

This commit is contained in:
Robin Sommer 2012-03-23 15:57:25 -07:00
parent e3f5cbb670
commit d7c9471818
6 changed files with 54 additions and 4 deletions

View file

@ -154,6 +154,10 @@ public:
uint64_t sent_out; //! Number of messages sent from the child thread to the main thread
uint64_t pending_in; //! Number of messages sent to the child but not yet processed.
uint64_t pending_out; //! Number of messages sent from the child but not yet processed by the main thread.
/// Statistics from our queues.
Queue<BasicInputMessage *>::Stats queue_in_stats;
Queue<BasicOutputMessage *>::Stats queue_out_stats;
};
/**