1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-02-17 15:45:37 -05:00
kernel/syscall.c
2017-11-09 16:00:36 +00:00

22 lines
508 B
C

#include "interrupt.h"
#include "logger.h"
#include "syscall.h"
static void syscall_do_exit(struct IsrRegisters regs);
void syscall_handler(const struct IsrRegisters regs)
{
const unsigned int id = regs.eax;
switch (id) {
case KERNELMQ_SYSCALL_EXIT: return syscall_do_exit(regs);
}
logger_info_from("syscall", "number %u", id);
}
void syscall_do_exit(const struct IsrRegisters regs)
{
logger_warn_from("syscall", "process try to exit with error code %u, haha", regs.ebx);
}