Revert "core: Switch to unique_ptr for usage of Common::Fiber."

This commit is contained in:
bunnei
2021-03-05 17:08:17 -08:00
committed by GitHub
parent 9d010be483
commit a5ab85ac37
10 changed files with 59 additions and 58 deletions

View File

@ -68,12 +68,12 @@ public:
void OnThreadStart();
[[nodiscard]] Common::Fiber* ControlContext() {
return switch_fiber.get();
[[nodiscard]] std::shared_ptr<Common::Fiber>& ControlContext() {
return switch_fiber;
}
[[nodiscard]] const Common::Fiber* ControlContext() const {
return switch_fiber.get();
[[nodiscard]] const std::shared_ptr<Common::Fiber>& ControlContext() const {
return switch_fiber;
}
[[nodiscard]] u64 UpdateHighestPriorityThread(KThread* highest_thread);
@ -178,7 +178,7 @@ private:
KThread* idle_thread;
std::unique_ptr<Common::Fiber> switch_fiber{};
std::shared_ptr<Common::Fiber> switch_fiber{};
struct SchedulingState {
std::atomic<bool> needs_scheduling;