Espresso 0.0.2c
This commit is contained in:
@ -5,15 +5,17 @@
|
||||
#include <drivers/elf.h>
|
||||
|
||||
|
||||
|
||||
typedef uint32_t pid_t;
|
||||
|
||||
typedef struct process {
|
||||
int32_t id;
|
||||
int32_t group;
|
||||
pid_t id;
|
||||
pid_t group;
|
||||
|
||||
elf_executable_t* exe;
|
||||
|
||||
struct process* next;
|
||||
} process_t;
|
||||
|
||||
int32_t make_process(char* name, char* group, elf_executable_t* exe);
|
||||
|
||||
pid_t make_process(char* name, char* group, elf_executable_t* exe);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user