NachOS/code/test/threadcreate.c
2021-11-19 14:15:32 +01:00

13 lines
174 B
C

#ifdef CHANGED
#include "syscall.h"
void f(int c) {
PutString("Thead!");
}
int main(){
//int i;
ThreadCreate(f, 66);
PutString("end of main()\n");
}
#endif