| 678 | } |
| 679 | |
| 680 | void MaintenanceManager::DecreaseOpCountAndNotifyWaiters(MaintenanceOp* op) { |
| 681 | running_instances_lock_.AssertAcquired(); |
| 682 | --running_ops_; |
| 683 | --op->running_; |
| 684 | op->cond_->Signal(); |
| 685 | } |
| 686 | |
| 687 | } // namespace kudu |
nothing calls this directly
no test coverage detected