Started kernel state class

This commit is contained in:
2020-08-01 16:13:09 -05:00
parent c75ca1999e
commit f5dd5bb135

21
src/kernelstate.hpp Normal file
View File

@@ -0,0 +1,21 @@
#ifndef KERNELSTATE_H
#define KERNELSTATE_H
#include <stddef.h>
#include "process.hpp"
namespace kernel
{
class State
{
public:
static const size_t MAX_PROCESSES = 2048;
};
}
#endif