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.

16 rivejä
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. }