Consistently spell "file name" and "file system" as two words.
[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 *file_name);
7 int process_wait (tid_t);
8 void process_exit (void);
9 void process_activate (void);
10
11 #endif /* userprog/process.h */