[USER] Temporary write syscall

This commit is contained in:
2016-12-11 19:50:01 +01:00
parent 1693baaf6b
commit 19df873615
7 changed files with 76 additions and 0 deletions

20
kernel/syscall/sys_fs.c Normal file
View File

@@ -0,0 +1,20 @@
#include <syscall.h>
#include <stdint.h>
#include <stddef.h>
#include <debug.h>
#include <mem.h>
#include <string.h>
SYSCALL_DEF(write)
{
SYSCALL_INIT(int, fd, void *, buffer, size_t, nbyte);
if(fd == 1)
{
debugn(buffer, nbyte);
return nbyte;
}
return 0;
}

View File

@@ -5,6 +5,7 @@
#include <gdt.h>
#include <registers.h>
#include "../../libc/syscall_num.h"
#include <string.h>
extern void syscall_entry();
@@ -34,6 +35,7 @@ registers_t *syscall_handler(registers_t *r)
}
debug_error("Unknown syscall, No:%d\n", r->rax);
debug("syscall_%d(%x, %x, %x, %x, %x, %x)\n", r->rax, r->rdi, r->rsi, r->rdx, r->r10, r->r8, r->r9);
for(;;);
}
@@ -54,6 +56,7 @@ void syscall_init()
memset(syscall_handlers, 0, 1024*sizeof(syscall_handler_t));
SYSCALL_REGISTER(debug, SYS_DEBUG);
SYSCALL_REGISTER(write, SYS_WRITE);
}
}