tasking, mm: remove unused functions and page_directory field from the Task struct

This commit is contained in:
2025-06-01 14:04:49 +03:00
parent 5f87e55067
commit d1ac41deeb
7 changed files with 10 additions and 642 deletions
-1
View File
@@ -58,7 +58,6 @@ typedef struct Process
TrapFrame* tf; // Trap frame (только для ring 3)
uint32_t ring; // Уровень привилегий (0 или 3)
struct Process* next; // Следующий процесс
uint32_t* page_directory; // Директория страниц
} Process;
Process* task_create(uint32_t func, void** args, uint32_t arg_count, uint32_t ring, uint32_t* pagedir);