OurOS 0.1
Operating System built by McGill Students
 
Loading...
Searching...
No Matches
process.h
1#ifndef PROCESS_H
2#define PROCESS_H
3
4#include "def.h"
5
6struct process_t {
7 uint64 pid;
8};
9#endif
10