| 2587 | } |
| 2588 | |
| 2589 | void |
| 2590 | DomainParticipantImpl::ShutdownHandler::wait() |
| 2591 | { |
| 2592 | shutdown_mutex_.acquire(); |
| 2593 | ThreadStatusManager& thread_status_manager = TheServiceParticipant->get_thread_status_manager(); |
| 2594 | while (!shutdown_complete_) { |
| 2595 | shutdown_condition_.wait(thread_status_manager); |
| 2596 | } |
| 2597 | shutdown_mutex_.release(); |
| 2598 | } |
| 2599 | |
| 2600 | bool DomainParticipantImpl::prepare_to_delete_datawriters() |
| 2601 | { |
no test coverage detected