Upload files to "include"

This commit is contained in:
2025-05-20 20:40:01 -05:00
parent 0fa9658918
commit 9b89d8b327
5 changed files with 63 additions and 0 deletions

19
include/processes.h Normal file
View File

@ -0,0 +1,19 @@
#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