Espresso 0.0.1b

This commit is contained in:
2025-06-27 14:48:06 -05:00
parent fca025a9bf
commit c336584114
39 changed files with 2676 additions and 936 deletions

View File

@ -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