diff options
Diffstat (limited to 'kernel/api/syscall.c')
-rw-r--r-- | kernel/api/syscall.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/api/syscall.c b/kernel/api/syscall.c index 1be5276..ed771ac 100644 --- a/kernel/api/syscall.c +++ b/kernel/api/syscall.c @@ -69,7 +69,7 @@ void syscall_init(void) { intr_register(INTR_SYSCALL, syscall_handler); } */ static long sys_read(read_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_read"); return -1; } @@ -84,7 +84,7 @@ static long sys_read(read_args_t *args) */ static long sys_write(write_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_write"); return -1; } @@ -100,7 +100,7 @@ static long sys_write(write_args_t *args) */ static long sys_getdents(getdents_args_t *args) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: sys_getdents"); return -1; } |