continue working on implementing lib9660 into the kernel
This commit is contained in:
+3
-3
@@ -2,7 +2,7 @@
|
||||
#define TASK_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "../include/fat.h"
|
||||
#include "../include/lib9660.h"
|
||||
|
||||
// Сегменты для ядра и пользователя
|
||||
#define SEG_KCODE 0x08 // Сегмент кода ядра
|
||||
@@ -64,8 +64,8 @@ typedef struct Process
|
||||
uint32_t ring; // Уровень привилегий (0 или 3)
|
||||
struct Process* next; // Следующий процесс
|
||||
|
||||
file_t* file_descriptors[MAX_OPEN_FILES];
|
||||
dir_t* cwd;
|
||||
l9660_file* file_descriptors[MAX_OPEN_FILES];
|
||||
l9660_dir* cwd;
|
||||
|
||||
void* brk;
|
||||
} Process;
|
||||
|
||||
Reference in New Issue
Block a user