20 lines
195 B
C
20 lines
195 B
C
#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
|