diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-19 01:01:27 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-19 01:10:34 +0200 |
commit | d5cce8643102f34af46cf11b57a47db7a052eff8 (patch) | |
tree | 65ff355a9a16cab03a74c130aece8227e3483002 /src/core/hle/kernel/svc.cpp | |
parent | Merge pull request #2462 from lioncash/video-mm (diff) | |
download | yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar.gz yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar.bz2 yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar.lz yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar.xz yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.tar.zst yuzu-d5cce8643102f34af46cf11b57a47db7a052eff8.zip |
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 2dcf174c5..c6fdd4e4f 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1255,8 +1255,8 @@ static ResultCode MapProcessCodeMemory(Core::System& system, Handle process_hand return vm_manager.MapCodeMemory(dst_address, src_address, size); } -ResultCode UnmapProcessCodeMemory(Core::System& system, Handle process_handle, u64 dst_address, - u64 src_address, u64 size) { +static ResultCode UnmapProcessCodeMemory(Core::System& system, Handle process_handle, + u64 dst_address, u64 src_address, u64 size) { LOG_DEBUG(Kernel_SVC, "called. process_handle=0x{:08X}, dst_address=0x{:016X}, src_address=0x{:016X}, " "size=0x{:016X}", @@ -2183,8 +2183,8 @@ static ResultCode GetProcessList(Core::System& system, u32* out_num_processes, return RESULT_SUCCESS; } -ResultCode GetThreadList(Core::System& system, u32* out_num_threads, VAddr out_thread_ids, - u32 out_thread_ids_size, Handle debug_handle) { +static ResultCode GetThreadList(Core::System& system, u32* out_num_threads, VAddr out_thread_ids, + u32 out_thread_ids_size, Handle debug_handle) { // TODO: Handle this case when debug events are supported. UNIMPLEMENTED_IF(debug_handle != InvalidHandle); |