mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 09:37:56 -05:00
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user