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

@@ -1,15 +0,0 @@
#include "syslib.h"
/*===========================================================================*
* sys_exit *
*===========================================================================*/
PUBLIC int sys_exit(int status)
{
/* A server wants to exit. The exit status is passed on, possibly a panic.
*/
message m;
m.EXIT_STATUS = status;
return(_taskcall(SYSTASK, SYS_EXIT, &m));
/* NOT REACHED */
}