blob: 3872faba8742e2ab82dc0e0db9d559f30ecc7245 [file] [log] [blame]
/*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*/
#include <autoconf.h>
#include <stdio.h>
#include <sel4/sel4.h>
#include <stdlib.h>
#include <stdarg.h>
static void
sel4_abort(void)
{
#if defined(CONFIG_DEBUG_BUILD) && defined(CONFIG_LIB_SEL4_MUSLC_SYS_DEBUG_HALT)
printf("seL4 root server abort()ed\n");
seL4_DebugHalt();
#endif
while (1); /* We don't return after this */
}
long
sys_exit(va_list ap)
{
abort();
return 0;
}
long
sys_rt_sigprocmask(va_list ap)
{
printf("Ignoring call to %s\n", __FUNCTION__);
return 0;
}
long
sys_gettid(va_list ap)
{
printf("Ignoring call to %s\n", __FUNCTION__);
return 0;
}
long
sys_getpid(va_list ap)
{
printf("Ignoring call to %s\n", __FUNCTION__);
return 0;
}
long
sys_tgkill(va_list ap)
{
printf("%s assuming self kill\n", __FUNCTION__);
sel4_abort();
return 0;
}
long
sys_tkill(va_list ap)
{
printf("%s assuming self kill\n", __FUNCTION__);
sel4_abort();
return 0;
}
long
sys_exit_group(va_list ap)
{
printf("Ignoring call to %s\n", __FUNCTION__);
return 0;
}