mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-22 22:57:56 -05:00
sockets: avoid locking around socket session calls
This commit is contained in:
@ -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[] = {
|
||||
|
Reference in New Issue
Block a user