aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2019-12-21 22:22:03 +0100
committerMarvin Borner2019-12-21 22:22:03 +0100
commit499784a824c541001c2fd52ae95eba88dcfc952b (patch)
treec3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /src/kernel/syscall/syscall.c
parent38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff)
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r--src/kernel/syscall/syscall.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index 7d5420d..5f32c42 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -1,9 +1,8 @@
#include <stdint.h>
#include <kernel/syscall/syscall.h>
#include <kernel/interrupts/interrupts.h>
-#include <kernel/io/io.h>
-#include <kernel/paging/paging.h>
#include <kernel/system.h>
+#include <kernel/lib/stdio.h>
typedef uint32_t (*syscall_func)(unsigned int, ...);
@@ -20,7 +19,7 @@ uint32_t (*syscalls[])() = {
void syscall_handler(struct regs *r)
{
- serial_write("Received syscall!\n");
+ serial_printf("Received syscall!");
if (r->eax >= sizeof(syscalls) / sizeof(*syscalls))
return;
@@ -29,6 +28,8 @@ void syscall_handler(struct regs *r)
if (!location)
return;
+ //serial_printf("[SYSCALL] %d (0x%x) 0x%x 0x%x 0x%x 0x%x 0x%x", r->eax, location, r->ebx, r->ecx, r->edx, r->esi, r->edi);
+
r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);
}