NachOS/code/userprog/userthread.cc
Yorick Barbanneau c4a2d25163 TD2 question I.4
Create userthread.cc content and call it from exception.cc
2021-11-19 14:14:42 +01:00

13 lines
226 B
C++

#ifdef CHANGED
#include "copyright.h"
#include "system.h"
#include "userthread.h"
#include "syscall.h"
int do_ThreadCreate(int f, int arg){
DEBUG('x',"Enter do_ThreadCreate function\n");
}
void do_ThreadExit(){
}
#endif