threading: rename CSemaphore methods to match std::semaphore

This commit is contained in:
Cory Fields
2025-05-08 16:12:48 +00:00
parent 66c968b4b4
commit 7b816c4e00
3 changed files with 17 additions and 17 deletions

View File

@@ -3428,13 +3428,13 @@ void CConnman::Interrupt()
if (semOutbound) {
for (int i=0; i<m_max_automatic_outbound; i++) {
semOutbound->post();
semOutbound->release();
}
}
if (semAddnode) {
for (int i=0; i<m_max_addnode; i++) {
semAddnode->post();
semAddnode->release();
}
}
}