2021-02-28 02:18:39 +01:00
|
|
|
/* See the end of this file for copyright, license, and warranty information. */
|
2021-01-04 15:40:16 +01:00
|
|
|
|
|
|
|
#include <ardix/syscall.h>
|
|
|
|
|
|
|
|
#include <toolchain.h>
|
|
|
|
|
2021-01-05 15:30:36 +01:00
|
|
|
#define sys_table_entry(number, func) \
|
2021-08-08 20:48:55 +02:00
|
|
|
[number] (long (*)(sysarg_t, sysarg_t, sysarg_t, sysarg_t, sysarg_t, sysarg_t))(func)
|
2021-01-04 15:40:16 +01:00
|
|
|
|
|
|
|
__rodata
|
2021-08-08 20:48:55 +02:00
|
|
|
long (*const sys_table[NSYSCALLS])(sysarg_t arg1, sysarg_t arg2, sysarg_t arg3,
|
|
|
|
sysarg_t arg4, sysarg_t arg5, sysarg_t arg6) = {
|
2021-08-05 16:15:35 +02:00
|
|
|
sys_table_entry(SYS_read, sys_read),
|
|
|
|
sys_table_entry(SYS_write, sys_write),
|
2021-08-09 19:20:40 +02:00
|
|
|
sys_table_entry(SYS_sleep, sys_sleep),
|
2021-01-04 15:40:16 +01:00
|
|
|
};
|
|
|
|
|
2021-08-08 20:48:55 +02:00
|
|
|
long sys_stub(void)
|
2021-01-04 15:40:16 +01:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2021-02-28 02:18:39 +01:00
|
|
|
* This file is part of Ardix.
|
|
|
|
* Copyright (c) 2020, 2021 Felix Kopp <owo@fef.moe>.
|
2021-01-04 15:40:16 +01:00
|
|
|
*
|
2021-05-10 16:19:38 +02:00
|
|
|
* Ardix is non-violent software: you may only use, redistribute,
|
|
|
|
* and/or modify it under the terms of the CNPLv6+ as found in
|
|
|
|
* the LICENSE file in the source code root directory or at
|
|
|
|
* <https://git.pixie.town/thufie/CNPL>.
|
2021-01-04 15:40:16 +01:00
|
|
|
*
|
2021-05-10 16:19:38 +02:00
|
|
|
* Ardix comes with ABSOLUTELY NO WARRANTY, to the extent
|
|
|
|
* permitted by applicable law. See the CNPLv6+ for details.
|
2021-01-04 15:40:16 +01:00
|
|
|
*/
|