kernel/physical_core: Ensure is_interrupted is always initialized

merge-requests/60/head
Lioncash 2022-12-05 14:52:13 +07:00
parent dddc9bb8f1
commit dcca650599
1 changed files with 1 additions and 1 deletions

@ -85,7 +85,7 @@ private:
std::mutex guard; std::mutex guard;
std::condition_variable on_interrupt; std::condition_variable on_interrupt;
std::unique_ptr<Core::ARM_Interface> arm_interface; std::unique_ptr<Core::ARM_Interface> arm_interface;
bool is_interrupted; bool is_interrupted{};
}; };
} // namespace Kernel } // namespace Kernel