Move problem 1-2 (join) into project 2 as the "wait" system call.
[pintos-anon] / src / userprog / process.h
1 #ifndef USERPROG_PROCESS_H
2 #define USERPROG_PROCESS_H
3
4 #include "threads/thread.h"
5
6 tid_t process_execute (const char *filename);
7 int process_wait (tid_t);
8 void process_exit (void);
9 void process_activate (void);
10
11 #endif /* userprog/process.h */