14 lines
308 B
C
14 lines
308 B
C
#ifndef USERPROG_PROCESS_H
|
|
#define USERPROG_PROCESS_H
|
|
|
|
#include "threads/thread.h"
|
|
|
|
tid_t process_execute (const char *file_name);
|
|
int process_wait (tid_t);
|
|
void process_exit (void);
|
|
void process_activate (void);
|
|
|
|
bool install_page (void *upage, void *kpage, bool writable);
|
|
|
|
#endif /* userprog/process.h */
|