blob: 688cd2a37fd2c1bd7fdcb417f834026a25fa4945 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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);
#endif /* userprog/process.h */
|