Wrote priority queue for processes

This commit is contained in:
2020-08-01 16:12:55 -05:00
parent fec2817883
commit c75ca1999e
3 changed files with 120 additions and 0 deletions

23
src/process.hpp Normal file
View File

@@ -0,0 +1,23 @@
#ifndef PROCESS_H
#define PROCESS_H
#include <stddef.h>
namespace kernel
{
class Process
{
public:
Process();
size_t priority;
void* stack;
};
};
#endif