mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 21:35:46 +00:00
Core: Address Feedback
This commit is contained in:
parent
1e6f8aba04
commit
2bc949628d
6 changed files with 50 additions and 24 deletions
|
@ -57,7 +57,7 @@ bool ServerSession::IsSignaled() const {
|
|||
}
|
||||
|
||||
// Wait if we have no pending requests, or if we're currently handling a request.
|
||||
return !(pending_requesting_threads.empty() || currently_handling != nullptr);
|
||||
return !pending_requesting_threads.empty() && currently_handling == nullptr;
|
||||
}
|
||||
|
||||
void ServerSession::Acquire(Thread* thread) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue