omos-tcnj2024/sys/include/process.h
2024-02-18 11:50:48 -05:00

13 lines
124 B
C

#ifndef PROCESS_H
#define PROCESS_H
#include <types.h>
struct process {
void *prstart;
s32 prsize;
s32 pid;
};
#endif