:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_kernel_sched.hpp: Program Listing for File sched.hpp ================================== |exhale_lsh| :ref:`Return to documentation for file ` (``kernel/sched.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // @license:bsd2 #pragma once #include "frg/spinlock.hpp" #include "kernel/cpu.hpp" #include #include #include #include #include #include #include // FIXME: Find an architecture-independent way of doing this #include namespace Gaia { constexpr auto TIME_SLICE = 5; struct Task; struct Waitq; enum class WaitResult { WAITING, SUCCESS, FAILED, }; struct Thread { Hal::CpuContext ctx; Cpu *cpu; enum { RUNNING, SUSPENDED, EXITED, } state; Vm::String name; Task *task; Vm::Vector children; ListNode link; // Scheduler queue bool in_fault = false; frg::simple_spinlock lock; ListNode wait_link; Waitq *waitq = nullptr; WaitResult wait_res; ~Thread(); }; pid_t sched_allocate_pid(); Result sched_new_thread(frg::string_view name, Task *task, Hal::CpuContext ctx, bool insert); Result sched_new_task(pid_t pid, Task *parent, bool user); void sched_tick(Hal::InterruptFrame *frame); void sched_yield(); Result sched_init(); Thread *sched_curr(); void sched_enqueue_thread(Thread *thread); void sched_dequeue_thread(Thread *thread); [[noreturn]] void sched_dequeue_and_die(); void sched_suspend_thread(Thread *thread); void sched_wake_thread(Thread *thread); void sched_send_to_death(Thread *thread); Result sched_new_worker_thread(frg::string_view name, uintptr_t entry_point, bool insert = true); Task *sched_kernel_task(); void sched_register_cpu(Cpu *cpu); } // namespace Gaia