File descriptors but bad
This commit is contained in:
+12
-1
@@ -11,6 +11,7 @@
|
||||
#include <config.h>
|
||||
#include <stdint.h>
|
||||
#include <limine.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef enum {
|
||||
READY,
|
||||
@@ -18,6 +19,13 @@ typedef enum {
|
||||
DEAD
|
||||
} status_t;
|
||||
|
||||
struct fd {
|
||||
int fd;
|
||||
char filename[PROCESS_NAME_MAX]; // File opened
|
||||
uint64_t cursor; // Cursor position in file
|
||||
bool open;
|
||||
};
|
||||
|
||||
struct process {
|
||||
size_t pid;
|
||||
char name[PROCESS_NAME_MAX];
|
||||
@@ -26,6 +34,10 @@ struct process {
|
||||
struct cpu_status* context;
|
||||
void* root_page_table; // Process PML4 (should contain kernel PML4 in higher half [256-511]
|
||||
void* kernel_stack; // Used for interrupts (syscall: int 0x80), defines the TSS RSP0
|
||||
|
||||
struct fd fdt[FDT_MAX]; // File Descriptor Table
|
||||
size_t next_free_fd;
|
||||
|
||||
struct process* next;
|
||||
};
|
||||
|
||||
@@ -38,7 +50,6 @@ void process_exit(void);
|
||||
|
||||
void process_display_list(struct process* processes_list);
|
||||
|
||||
void process_create_user(struct limine_file* file, char* name);
|
||||
void process_create_user_raw(char* file, int size, char* name);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user