summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-03-27 01:00:30 +0100
committerbunnei <bunneidev@gmail.com>2020-04-17 06:59:28 +0200
commit82d457af3760f2208b31d4a99bb2e1f264cc1dfe (patch)
tree6e049d0a0f8ae1763aa9abea8600e07d8a37b409 /src/core/hle/kernel
parentexternals: Update to latest dynarmic. (diff)
downloadyuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.gz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.bz2
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.lz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.xz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.zst
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/svc.cpp6
-rw-r--r--src/core/hle/kernel/svc.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 4ffc113c2..7b24cfc8b 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -42,7 +42,7 @@
#include "core/memory.h"
#include "core/reporter.h"
-namespace Kernel {
+namespace Kernel::Svc {
namespace {
// Checks if address + size is greater than the given address
@@ -2656,7 +2656,7 @@ static const FunctionDef* GetSVCInfo64(u32 func_num) {
MICROPROFILE_DEFINE(Kernel_SVC, "Kernel", "SVC", MP_RGB(70, 200, 70));
-void CallSVC(Core::System& system, u32 immediate) {
+void Call(Core::System& system, u32 immediate) {
MICROPROFILE_SCOPE(Kernel_SVC);
// Lock the global kernel mutex when we enter the kernel HLE.
@@ -2675,4 +2675,4 @@ void CallSVC(Core::System& system, u32 immediate) {
}
}
-} // namespace Kernel
+} // namespace Kernel::Svc
diff --git a/src/core/hle/kernel/svc.h b/src/core/hle/kernel/svc.h
index c5539ac1c..46e64277e 100644
--- a/src/core/hle/kernel/svc.h
+++ b/src/core/hle/kernel/svc.h
@@ -10,8 +10,8 @@ namespace Core {
class System;
}
-namespace Kernel {
+namespace Kernel::Svc {
-void CallSVC(Core::System& system, u32 immediate);
+void Call(Core::System& system, u32 immediate);
-} // namespace Kernel
+} // namespace Kernel::Svc