General Purpose library for Freestanding C++ and POSIX systems
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

14 rader
237 B

#pragma once
#include "gp/indexed_array.hpp"
#include "gp/vfs/process_data.hpp"
namespace gp{
class scheduler {
gp::indexed_array<gp::process_data*, gp_config::limits::max_processes> processes;
public:
[[noreturn]] void run();
};
}