Espresso 0.0.1b
This commit is contained in:
@ -1,19 +1,19 @@
|
||||
#ifndef _PROCESSES_H
|
||||
#define _PROCESSES_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <types.h>
|
||||
#include <drivers/elf.h>
|
||||
|
||||
|
||||
|
||||
struct process
|
||||
{
|
||||
uint16_t id;
|
||||
uint8_t policy;
|
||||
uint16_t priority;
|
||||
typedef struct process {
|
||||
int32_t id;
|
||||
int32_t group;
|
||||
|
||||
char name[16];
|
||||
elf_executable_t* exe;
|
||||
|
||||
struct process* next;
|
||||
};
|
||||
} process_t;
|
||||
|
||||
int32_t make_process(char* name, char* group, elf_executable_t* exe);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user