| 112 | CountingSemaphore::~CountingSemaphore() = default; |
| 113 | |
| 114 | Status CountingSemaphore::Acquire(uint32_t num_permits) { |
| 115 | return impl_->Acquire(num_permits); |
| 116 | } |
| 117 | Status CountingSemaphore::Release(uint32_t num_permits) { |
| 118 | return impl_->Release(num_permits); |
| 119 | } |
no outgoing calls