diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-31 21:50:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-31 21:50:12 -0400 |
| commit | 1c05c06e048c0471653275dcb00f391acbfd6324 (patch) | |
| tree | 8eda46d4aac083d23a52223e1a3fc46bc6690a6c /src/core/hle/kernel/svc.cpp | |
| parent | 42588493d5ad5d824fc557ac936e64e5e7fd7e44 (diff) | |
| parent | 4a587b81b285bcd41246329e89591be7cfe37c8a (diff) | |
Merge pull request #1212 from lioncash/forward-decl
core/core: Replace includes with forward declarations where applicable
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 099d1053f..5da71cff0 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -12,16 +12,20 @@ #include "common/logging/log.h" #include "common/microprofile.h" #include "common/string_util.h" +#include "core/arm/exclusive_monitor.h" #include "core/core.h" +#include "core/core_cpu.h" #include "core/core_timing.h" #include "core/hle/kernel/address_arbiter.h" #include "core/hle/kernel/client_port.h" #include "core/hle/kernel/client_session.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/handle_table.h" +#include "core/hle/kernel/kernel.h" #include "core/hle/kernel/mutex.h" #include "core/hle/kernel/process.h" #include "core/hle/kernel/resource_limit.h" +#include "core/hle/kernel/scheduler.h" #include "core/hle/kernel/shared_memory.h" #include "core/hle/kernel/svc.h" #include "core/hle/kernel/svc_wrap.h" |
