| 59 | } |
| 60 | |
| 61 | void |
| 62 | MessageTracker::message_dropped() |
| 63 | { |
| 64 | ACE_GUARD(ACE_Thread_Mutex, guard, lock_); |
| 65 | ++dropped_count_; |
| 66 | |
| 67 | if (!pending_messages_i()) { |
| 68 | done_condition_.notify_all(); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | void MessageTracker::wait_messages_pending(const char* caller) |
| 73 | { |
no test coverage detected