diff options
| author | bunnei <bunneidev@gmail.com> | 2021-12-29 21:40:38 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-12-30 15:50:45 -0800 |
| commit | 3a89723d97b8e646cde569030057777813f4371c (patch) | |
| tree | c08f00b1ebb21c3652f0e23ab28fe06c4678aa42 /src/core/CMakeLists.txt | |
| parent | 5e5827190374946cc906da3a5d2aa586a9721ba0 (diff) | |
core: hle: kernel: Implement thread pinning.
- We largely had the mechanics in place for thread pinning, this change hooks these up.
- Validated with tests https://github.com/Atmosphere-NX/Atmosphere/blob/master/tests/TestSvc/source/test_thread_pinning.cpp.
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 698c4f912..b1a746727 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -187,6 +187,8 @@ add_library(core STATIC hle/kernel/k_event.h hle/kernel/k_handle_table.cpp hle/kernel/k_handle_table.h + hle/kernel/k_interrupt_manager.cpp + hle/kernel/k_interrupt_manager.h hle/kernel/k_light_condition_variable.cpp hle/kernel/k_light_condition_variable.h hle/kernel/k_light_lock.cpp |
