summaryrefslogtreecommitdiffstats
path: root/src/core/core_cpu.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-15core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrsLioncash1-3/+7
2018-10-15core: Make the exclusive monitor a unique_ptr instead of a shared_ptrLioncash1-3/+2
Like the barrier, this is owned entirely by the System and will always outlive the encompassing state, so shared ownership semantics aren't necessary here.
2018-10-15core: Make CPUBarrier a unique_ptr instead of a shared_ptrLioncash1-3/+3
This will always outlive the Cpu instances, since it's destroyed after we destroy the Cpu instances on shutdown, so there's no need for shared ownership semantics here.
2018-09-25core_cpu: Make arm_interface instances a std::unique_ptrLioncash1-1/+1
This is only exposed by reference, so we can just make it a unique pointer to get rid of the need to also use reference counting for the pointer.
2018-09-18core/core_cpu: Replace exclusive monitor include with forward declarationLioncash1-2/+3
We don't need to include this as a dependency within the header. A regular forward declaration will suffice here.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-4/+4
2018-08-25core: Namespace all code in the arm subdirectory under the Core namespaceLioncash1-2/+2
Gets all of these types and interfaces out of the global namespace.
2018-08-13Core/HLE: Make the 'reschedule_pending' flag atomic.Subv1-1/+1
Another thread may write to this variable while the core in question is in the middle of checking for a reschedule request.
2018-07-22Implement exclusive monitorMerryMage1-1/+9
2018-05-11core: Support session close with multicore.bunnei1-10/+7
2018-05-11core: Implement multicore support.bunnei1-4/+8
2018-05-11core: Create a thread for each CPU core, keep in lock-step with a barrier.bunnei1-1/+32
2018-05-11core: Move common CPU core things to its own class.bunnei1-0/+46