Removed sys_exit() kernel call.

This commit is contained in:
Jorrit Herder
2005-06-24 16:19:41 +00:00
parent f336ce29bb
commit e3bb0e40ee
4 changed files with 8 additions and 27 deletions

View File

@@ -22,9 +22,9 @@ int num; /* number to go with format string */
}
}
m.m_type = SYS_EXIT;
m.EXIT_STATUS = 1;
_taskcall(SYSTASK, SYS_EXIT, &m);
m.m_type = SYS_XIT;
m.PR_PROC_NR = SELF;
_taskcall(SYSTASK, SYS_XIT, &m);
/* never reached */
}