TD3:II.1 Add test programs

This commit is contained in:
Yorick Barbanneau 2021-12-08 01:32:57 +01:00
parent 07853cbcd3
commit 1b0dea618b
3 changed files with 28 additions and 0 deletions

8
code/test/forkexec.c Normal file
View file

@ -0,0 +1,8 @@
#include "syscall.h"
main()
{
ForkExec("../test/userpages0");
ForkExec("../test/userpages0");
while(1);
}