Match much of process.c

This commit is contained in:
gamemasterplc 2023-11-23 09:47:39 -06:00
parent 41f0ffb565
commit 015fbf39b1
5 changed files with 261 additions and 35 deletions

View file

@ -31,13 +31,13 @@ typedef struct process {
struct process *child;
struct process *parent;
struct process *next_child;
struct process *last_child;
struct process *first_child;
void *heap;
u16 exec;
u16 stat;
u16 prio;
s32 sleep_time;
void *base_sp;
u32 base_sp;
jmp_buf jump;
void (*dtor)(void);
void *user_data;