blob: 22295ef2ccb0b90ee3cea47c8bae20bfbda11c46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <mutex.h>
#include <process.h>
typedef struct process {
pagedir_t *pd;
thread_t *thread;
int pid, ppid;
} process_t;
/* vim: set ts=4 sw=4 tw=0 noet :*/
|