mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-11 16:37:52 +00:00
sockets: avoid locking around socket session calls
This commit is contained in:
parent
54426fb2a3
commit
9b39e25805
3 changed files with 10 additions and 2 deletions
|
@ -1029,6 +1029,11 @@ BSD::~BSD() {
|
|||
}
|
||||
}
|
||||
|
||||
std::unique_lock<std::mutex> BSD::LockService() {
|
||||
// Do not lock socket IClient instances.
|
||||
return {};
|
||||
}
|
||||
|
||||
BSDCFG::BSDCFG(Core::System& system_) : ServiceFramework{system_, "bsdcfg"} {
|
||||
// clang-format off
|
||||
static const FunctionInfo functions[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue