mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-08 05:49:15 +00:00
Update files
This commit is contained in:
@ -6,6 +6,8 @@
|
||||
#include <interrupts.hpp>
|
||||
#include <vector.hpp>
|
||||
#include <memory.hpp>
|
||||
#include <hashmap.hpp>
|
||||
#include <ipc.hpp>
|
||||
|
||||
namespace Tasking
|
||||
{
|
||||
@ -99,6 +101,11 @@ namespace Tasking
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void SetPriority(int priority)
|
||||
{
|
||||
Info.Priority = priority;
|
||||
}
|
||||
};
|
||||
|
||||
struct PCB
|
||||
@ -113,6 +120,7 @@ namespace Tasking
|
||||
Vector<TCB *> Threads;
|
||||
Vector<PCB *> Children;
|
||||
Memory::PageTable *PageTable;
|
||||
HashMap<InterProcessCommunication::IPCPort, uint64_t> *IPCHandles;
|
||||
};
|
||||
|
||||
enum TokenTrustLevel
|
||||
|
Reference in New Issue
Block a user