diff options
| author | 2021-11-03 21:21:01 -0400 | |
|---|---|---|
| committer | 2021-11-03 21:42:57 -0400 | |
| commit | 7c4b6aab2ef7cb2be77e32023323b1c5bd9e3d2f (patch) | |
| tree | 83b16c8a012bef41e6f30a64114da8d01895eeb2 /src/core/hle/kernel/svc.cpp | |
| parent | Merge pull request #7278 from Morph1984/svc-num-handles (diff) | |
| download | yuzu-7c4b6aab2ef7cb2be77e32023323b1c5bd9e3d2f.tar.gz yuzu-7c4b6aab2ef7cb2be77e32023323b1c5bd9e3d2f.tar.xz yuzu-7c4b6aab2ef7cb2be77e32023323b1c5bd9e3d2f.zip | |
core: Remove unused includes
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index f328ce111..fbfe6fc1a 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -13,18 +13,11 @@ | |||
| 13 | #include "common/common_funcs.h" | 13 | #include "common/common_funcs.h" |
| 14 | #include "common/fiber.h" | 14 | #include "common/fiber.h" |
| 15 | #include "common/logging/log.h" | 15 | #include "common/logging/log.h" |
| 16 | #include "common/microprofile.h" | ||
| 17 | #include "common/scope_exit.h" | 16 | #include "common/scope_exit.h" |
| 18 | #include "common/string_util.h" | ||
| 19 | #include "core/arm/exclusive_monitor.h" | ||
| 20 | #include "core/core.h" | 17 | #include "core/core.h" |
| 21 | #include "core/core_timing.h" | 18 | #include "core/core_timing.h" |
| 22 | #include "core/core_timing_util.h" | ||
| 23 | #include "core/cpu_manager.h" | ||
| 24 | #include "core/hle/kernel/k_address_arbiter.h" | ||
| 25 | #include "core/hle/kernel/k_client_port.h" | 19 | #include "core/hle/kernel/k_client_port.h" |
| 26 | #include "core/hle/kernel/k_client_session.h" | 20 | #include "core/hle/kernel/k_client_session.h" |
| 27 | #include "core/hle/kernel/k_condition_variable.h" | ||
| 28 | #include "core/hle/kernel/k_event.h" | 21 | #include "core/hle/kernel/k_event.h" |
| 29 | #include "core/hle/kernel/k_handle_table.h" | 22 | #include "core/hle/kernel/k_handle_table.h" |
| 30 | #include "core/hle/kernel/k_memory_block.h" | 23 | #include "core/hle/kernel/k_memory_block.h" |
| @@ -35,7 +28,6 @@ | |||
| 35 | #include "core/hle/kernel/k_resource_limit.h" | 28 | #include "core/hle/kernel/k_resource_limit.h" |
| 36 | #include "core/hle/kernel/k_scheduler.h" | 29 | #include "core/hle/kernel/k_scheduler.h" |
| 37 | #include "core/hle/kernel/k_scoped_resource_reservation.h" | 30 | #include "core/hle/kernel/k_scoped_resource_reservation.h" |
| 38 | #include "core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h" | ||
| 39 | #include "core/hle/kernel/k_shared_memory.h" | 31 | #include "core/hle/kernel/k_shared_memory.h" |
| 40 | #include "core/hle/kernel/k_synchronization_object.h" | 32 | #include "core/hle/kernel/k_synchronization_object.h" |
| 41 | #include "core/hle/kernel/k_thread.h" | 33 | #include "core/hle/kernel/k_thread.h" |
| @@ -47,10 +39,8 @@ | |||
| 47 | #include "core/hle/kernel/svc_results.h" | 39 | #include "core/hle/kernel/svc_results.h" |
| 48 | #include "core/hle/kernel/svc_types.h" | 40 | #include "core/hle/kernel/svc_types.h" |
| 49 | #include "core/hle/kernel/svc_wrap.h" | 41 | #include "core/hle/kernel/svc_wrap.h" |
| 50 | #include "core/hle/kernel/time_manager.h" | ||
| 51 | #include "core/hle/lock.h" | 42 | #include "core/hle/lock.h" |
| 52 | #include "core/hle/result.h" | 43 | #include "core/hle/result.h" |
| 53 | #include "core/hle/service/service.h" | ||
| 54 | #include "core/memory.h" | 44 | #include "core/memory.h" |
| 55 | #include "core/reporter.h" | 45 | #include "core/reporter.h" |
| 56 | 46 | ||