:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_kernel_cpu.hpp: Program Listing for File cpu.hpp ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``kernel/cpu.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Gaia { struct Cpu { Hal::CpuData data; uint32_t magic = 0xCAFEBABE; uint64_t ms; Thread *current_thread, *idle_thread, *previous_thread; Spinlock timer_lock; }; Cpu *cpu_self(); } // namespace Gaia