Implement skeleton for exit command w/ S.
This commit is contained in:
@@ -14,6 +14,7 @@ typedef uintptr_t syscall_function (uintptr_t, uintptr_t, uintptr_t);
|
|||||||
|
|
||||||
/* System Call Functions */
|
/* System Call Functions */
|
||||||
static void halt (void);
|
static void halt (void);
|
||||||
|
static void exit (int status);
|
||||||
|
|
||||||
void
|
void
|
||||||
syscall_init (void)
|
syscall_init (void)
|
||||||
@@ -33,3 +34,9 @@ halt (void)
|
|||||||
{
|
{
|
||||||
shutdown_power_off ();
|
shutdown_power_off ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
exit (int status)
|
||||||
|
{
|
||||||
|
//TODO
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user