summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/physical_core.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Implement separate A32/A64 ARM interfaces.bunnei2020-03-031-1/+5
|
* kernel/physical_core: Make use of std::unique_ptrLioncash2020-01-311-2/+8
| | | | | | | | | | | | | | | | | | shared_ptr was used in 2d1984c20c75e03ec79eeb3806b12efa1679b977 due to a misunderstanding of how the language generates move constructors and move assignment operators. If a destructor is user-provided, then the compiler won't generate the move constructor and move assignment operators by default--they must be explicitly opted into. The reason for the compilation errors is due to the fact that the language will fall back to attempting to use the copy constructor/copy assignment operators if the respective move constructor or move assignment operator is unavailable. Given that we explicitly opt into them now, the the move constructor and move assignment operators will be generated as expected.
* kernel/physical_core: Remove unused kernel reference member variableLioncash2020-01-311-4/+1
| | | | | | | This isn't used within the class, so it can be removed to simplify the overall interface. While we're in the same area, we can simplify a unique_ptr reset() call.
* System: Address FeedbackFernando Sahmkow2020-01-271-3/+9
|
* Core: Refactor CPU Management.Fernando Sahmkow2020-01-251-8/+14
| | | | This commit moves ARM Interface and Scheduler handling into the kernel.
* Kernel: Implement Physical Core.Fernando Sahmkow2020-01-241-0/+62