Files
Espresso/include/processes.h

20 lines
195 B
C
Raw Normal View History

2025-05-28 14:41:02 -05:00
#ifndef _PROCESSES_H
#define _PROCESSES_H
#include <stdint.h>
struct process
{
uint16_t id;
uint8_t policy;
uint16_t priority;
char name[16];
struct process* next;
};
#endif