summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2022-03-30 21:15:06 -0700
committerGravatar Morph2022-04-02 01:24:30 -0400
commit99770653bb5029b542977deb6ad7cd449705d49b (patch)
treed6bb14cc24bdb2eae3f94ddab53dc198eea9b0d5 /src
parenthle: service: filesystem: Create a service thread where appropriate. (diff)
downloadyuzu-99770653bb5029b542977deb6ad7cd449705d49b.tar.gz
yuzu-99770653bb5029b542977deb6ad7cd449705d49b.tar.xz
yuzu-99770653bb5029b542977deb6ad7cd449705d49b.zip
hle: service: bsd: Create a service thread where appropriate.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/sockets/bsd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp
index fc93fb743..d6702e4e1 100644
--- a/src/core/hle/service/sockets/bsd.cpp
+++ b/src/core/hle/service/sockets/bsd.cpp
@@ -837,7 +837,8 @@ void BSD::BuildErrnoResponse(Kernel::HLERequestContext& ctx, Errno bsd_errno) co
837 rb.PushEnum(bsd_errno); 837 rb.PushEnum(bsd_errno);
838} 838}
839 839
840BSD::BSD(Core::System& system_, const char* name) : ServiceFramework{system_, name} { 840BSD::BSD(Core::System& system_, const char* name)
841 : ServiceFramework{system_, name, ServiceThreadType::CreateNew} {
841 // clang-format off 842 // clang-format off
842 static const FunctionInfo functions[] = { 843 static const FunctionInfo functions[] = {
843 {0, &BSD::RegisterClient, "RegisterClient"}, 844 {0, &BSD::RegisterClient, "RegisterClient"},