summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-03-09 15:19:15 +0100
committerGitHub <noreply@github.com>2023-03-09 15:19:15 +0100
commitec4e2d1fab5ff71a33de1229dab191b679983daa (patch)
treea0e09486cb95c4a86d03fb36e6df785c32a337cc /src/core/hle/kernel/k_thread.h
parentMerge pull request #9822 from ameerj/buffcache-ssbo-addr (diff)
parentkernel: clone fpu status on CreateThread (diff)
downloadyuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar.gz
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar.bz2
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar.lz
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar.xz
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.tar.zst
yuzu-ec4e2d1fab5ff71a33de1229dab191b679983daa.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index bd125f5f1..9423f08ca 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -254,6 +254,8 @@ public:
thread_context_32.tpidr = static_cast<u32>(value);
}
+ void CloneFpuStatus();
+
[[nodiscard]] ThreadContext32& GetContext32() {
return thread_context_32;
}