mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
.ttf fonts (beta)
This commit is contained in:
@@ -41,10 +41,13 @@ typedef struct process {
|
||||
void *kernel_stack_alloc; // Original pointer from kmalloc for freeing
|
||||
void *user_stack_alloc; // Original pointer from kmalloc for freeing
|
||||
|
||||
bool is_terminal_proc; // Was this process started from the shell?
|
||||
bool is_terminal_proc;
|
||||
|
||||
struct process *next;
|
||||
} process_t;
|
||||
|
||||
uint8_t fpu_state[512] __attribute__((aligned(16)));
|
||||
bool fpu_initialized;
|
||||
} __attribute__((aligned(16))) process_t;
|
||||
|
||||
void process_init(void);
|
||||
void process_create(void* entry_point, bool is_user);
|
||||
|
||||
Reference in New Issue
Block a user