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,6 +21,7 @@ static inline void __attribute__ ((noreturn)) l4_exit(int status)
void __attribute__ ((noreturn)) _exit(int status)
{
printf("In %s.\n", __FUNCTION__);
l4_exit(status);
}