General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
237 B

  1. #pragma once
  2. #include "gp/indexed_array.hpp"
  3. #include "gp/vfs/process_data.hpp"
  4. namespace gp{
  5. class scheduler {
  6. gp::indexed_array<gp::process_data*, gp_config::limits::max_processes> processes;
  7. public:
  8. [[noreturn]] void run();
  9. };
  10. }