execve working from vfs executable file along with clone/fork/exit

This commit is contained in:
Bahadir Balban
2008-12-02 18:29:40 +02:00
parent 32b3dfe91d
commit 9123eb49a8
10 changed files with 64 additions and 33 deletions

View File

@@ -6,6 +6,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <tests.h>
#include <l4/macros.h>
int global = 0;
extern pid_t pid;
@@ -39,5 +40,6 @@ int forktest(void)
out:
printf("PID: %d exiting...\n", myid);
_exit(0);
BUG();
}