NachOS/code/userprog/userthread.h
2021-11-19 14:15:32 +01:00

13 lines
199 B
C

#ifdef CHANGED
#include "copyright.h"
#include "utility.h"
typedef struct {
int f;
int arg;
} ThreadArgs_t;
extern int do_ThreadCreate(int f, int arg);
extern void do_ThreadExit();
#endif