Advertisement
Guest User

process.h

a guest
May 26th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #ifndef USERPROG_PROCESS_H
  2. #define USERPROG_PROCESS_H
  3.  
  4. #include "threads/thread.h"
  5. typedef int pid_t;
  6.  
  7. tid_t process_execute(const char *file_name);
  8. int process_wait(tid_t);
  9. void process_exit(void);
  10. void process_activate(void);
  11.  
  12. #endif /* userprog/process.h */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement