aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-03-18 17:32:50 +0100
committerMarvin Borner2020-03-18 17:32:50 +0100
commitf495cc1e93710c233292a503720ec235a61b685c (patch)
tree23b0b4b82b6d80001c1ffdb15f00b93cbdc65722 /src/kernel/syscall/syscall.c
parentc6657aac0c5d5ecf347bc082cb6df38e1174d297 (diff)
Applied official linux kernel code style guidelines
Due to my change to vim and the clang-format plugin this was needed!
Diffstat (limited to 'src/kernel/syscall/syscall.c')
-rw-r--r--src/kernel/syscall/syscall.c38
1 files changed, 18 insertions, 20 deletions
diff --git a/src/kernel/syscall/syscall.c b/src/kernel/syscall/syscall.c
index bb3a01e..d8bc4b8 100644
--- a/src/kernel/syscall/syscall.c
+++ b/src/kernel/syscall/syscall.c
@@ -6,35 +6,33 @@
typedef uint32_t (*syscall_func)(unsigned int, ...);
-uint32_t (*syscalls[])() = {
- [0] = (uint32_t (*)()) halt_loop, // DEBUG!
- [1] = sys_write,
- [2] = sys_read,
- [3] = (uint32_t (*)()) sys_writec,
- [4] = sys_readc,
- [5] = sys_get_pointers,
- [6] = sys_alloc,
- [7] = sys_free
-};
+uint32_t (*syscalls[])() = { [0] = (uint32_t(*)())halt_loop, // DEBUG!
+ [1] = sys_write,
+ [2] = sys_read,
+ [3] = (uint32_t(*)())sys_writec,
+ [4] = sys_readc,
+ [5] = sys_get_pointers,
+ [6] = sys_alloc,
+ [7] = sys_free };
void syscall_handler(struct regs *r)
{
- serial_printf("Received syscall!");
+ serial_printf("Received syscall!");
- if (r->eax >= sizeof(syscalls) / sizeof(*syscalls))
- return;
+ if (r->eax >= sizeof(syscalls) / sizeof(*syscalls))
+ return;
- syscall_func location = (syscall_func) syscalls[r->eax];
- if (!location)
- return;
+ syscall_func location = (syscall_func)syscalls[r->eax];
+ 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);
+ 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);
+ r->eax = location(r->ebx, r->ecx, r->edx, r->esi, r->edi);
}
void syscalls_install()
{
- isr_install_handler(0x80, syscall_handler);
+ isr_install_handler(0x80, syscall_handler);
} \ No newline at end of file