Fixed various faults with execve().

Added a new ordered task_insert_vma() function
This commit is contained in:
Bahadir Balban
2008-12-02 14:15:40 +02:00
parent 05d8438f34
commit 32b3dfe91d
7 changed files with 68 additions and 7 deletions

View File

@@ -21,12 +21,14 @@ int forktest(void)
myid = getpid();
pid = myid;
if (global != 0) {
printf("Global not zero.\n");
printf("-- FAILED --\n");
goto out;
}
global = myid;
if (global != myid) {
printf("Global has not changed to myid.\n");
printf("-- FAILED --\n");
goto out;
}