General Purpose library for Freestanding C++ and POSIX systems
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
346 B

  1. #pragma once
  2. #include "gp/algorithm/reference.hpp"
  3. #include "gp/allocator/allocator.hpp"
  4. #include "gp/vector.hpp"
  5. #include "gp/vfs/filesystem.hpp"
  6. #include "gp/vfs/scheduler.hpp"
  7. namespace gp{
  8. class system {
  9. gp::reference_wrapper<gp::allocator> system_allocator;
  10. gp::vector<gp::filesystem*> filesystems;
  11. gp::scheduler process_manager;
  12. };
  13. }