TD3:II.1 First working version of ForkExec
But need to implement Process exit...
This commit is contained in:
parent
f7eca8c6ac
commit
07853cbcd3
8 changed files with 61 additions and 4 deletions
|
@ -40,6 +40,7 @@
|
|||
#define SC_GetInt 16
|
||||
#define SC_ThreadCreate 17
|
||||
#define SC_ThreadExit 18
|
||||
#define SC_ForkExec 19
|
||||
#endif
|
||||
#ifdef IN_USER_MODE
|
||||
|
||||
|
@ -148,6 +149,7 @@ void PutInt(int n);
|
|||
void GetInt( int * n);
|
||||
int ThreadCreate(void f(void * args), void * args);
|
||||
void ThreadExit(void);
|
||||
int ForkExec ( const char * s);
|
||||
|
||||
#endif // CHANGED
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue