00001 #ifndef USERPROG_PROCESS_H 00002 //98761678210217 00003 #define USERPROG_PROCESS_H 00004 00005 #include "threads/thread.h" 00006 00007 tid_t process_execute (const char *file_name); 00008 int process_wait (tid_t); 00009 void process_exit (void); 00010 void process_activate (void); 00011 00012 #endif /* userprog/process.h */