diff options
| author | 2020-03-26 20:00:30 -0400 | |
|---|---|---|
| committer | 2020-04-17 00:59:28 -0400 | |
| commit | 82d457af3760f2208b31d4a99bb2e1f264cc1dfe (patch) | |
| tree | 6e049d0a0f8ae1763aa9abea8600e07d8a37b409 /src/core/hle/kernel/svc.cpp | |
| parent | externals: Update to latest dynarmic. (diff) | |
| download | yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.gz yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.xz yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.zip | |
core: kernel: Move SVC to its own namesapce.
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 6 |
1 files changed, 3 insertions, 3 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 @@ | |||
| 42 | #include "core/memory.h" | 42 | #include "core/memory.h" |
| 43 | #include "core/reporter.h" | 43 | #include "core/reporter.h" |
| 44 | 44 | ||
| 45 | namespace Kernel { | 45 | namespace Kernel::Svc { |
| 46 | namespace { | 46 | namespace { |
| 47 | 47 | ||
| 48 | // Checks if address + size is greater than the given address | 48 | // Checks if address + size is greater than the given address |
| @@ -2656,7 +2656,7 @@ static const FunctionDef* GetSVCInfo64(u32 func_num) { | |||
| 2656 | 2656 | ||
| 2657 | MICROPROFILE_DEFINE(Kernel_SVC, "Kernel", "SVC", MP_RGB(70, 200, 70)); | 2657 | MICROPROFILE_DEFINE(Kernel_SVC, "Kernel", "SVC", MP_RGB(70, 200, 70)); |
| 2658 | 2658 | ||
| 2659 | void CallSVC(Core::System& system, u32 immediate) { | 2659 | void Call(Core::System& system, u32 immediate) { |
| 2660 | MICROPROFILE_SCOPE(Kernel_SVC); | 2660 | MICROPROFILE_SCOPE(Kernel_SVC); |
| 2661 | 2661 | ||
| 2662 | // Lock the global kernel mutex when we enter the kernel HLE. | 2662 | // Lock the global kernel mutex when we enter the kernel HLE. |
| @@ -2675,4 +2675,4 @@ void CallSVC(Core::System& system, u32 immediate) { | |||
| 2675 | } | 2675 | } |
| 2676 | } | 2676 | } |
| 2677 | 2677 | ||
| 2678 | } // namespace Kernel | 2678 | } // namespace Kernel::Svc |